Skip to content

Commit 20725d3

Browse files
authored
Merge branch 'arduino-libraries:master' into master
2 parents 5759abc + c635295 commit 20725d3

File tree

2 files changed

+1
-27
lines changed

2 files changed

+1
-27
lines changed

.github/workflows/check-arduino.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v4
2020

2121
- name: Arduino Lint
22-
uses: arduino/arduino-lint-action@v1
22+
uses: arduino/arduino-lint-action@v2
2323
with:
2424
compliance: specification
2525
library-manager: update

docs/api.md

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -57,32 +57,6 @@ SD.exists(filename)
5757
* [remove()](#remove)
5858
* [rmdir()](#rmdir)
5959

60-
### `exists()`
61-
62-
Tests whether a file or directory exists on the SD card.
63-
64-
#### Syntax
65-
66-
```
67-
SD.exists(filename)
68-
```
69-
70-
#### Parameters
71-
72-
* `filename`: the name of the file to test for existence, which can include directories (delimited by forward-slashes, /).
73-
74-
#### Returns
75-
76-
1 if the file or directory exists, 0 if not.
77-
78-
#### See also
79-
80-
* [begin()](#begin)
81-
* [mkdir()](#mkdir)
82-
* [open()](#open)
83-
* [remove()](#remove)
84-
* [rmdir()](#rmdir)
85-
8660
### `mkdir()`
8761

8862
Create a directory on the SD card. This will also create any intermediate directories that don't already exists; e.g. `SD.mkdir("a/b/c")` will create a, b, and c.

0 commit comments

Comments
 (0)