Skip to content

Commit 1990f90

Browse files
docs: Add missing and fix some upy-fs-hex methods.
1 parent b0e93e7 commit 1990f90

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/quick-guide.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@ var addedFilenames = micropythonFs.importFilesFromIntelHex(UploadedHexWithUserFi
2020

2121
micropythonFs.create('filename.txt', 'Error thrown if file already exists.');
2222
micropythonFs.write('filename.txt', 'Create or overwrites file.');
23+
// Append not yet implemented
2324
micropythonFs.append('filename.txt', 'Adds additional content.');
2425
var content = micropythonFs.read('filename.txt');
26+
var contentByteArray = micropythonFs.readBytes('filename.txt');
2527
if (micropythonFs.exists('filename.txt')) {
2628
micropythonFs.remove('filename.txt');
2729
}
28-
micropythonFs.ls();
2930
var fileSizeInBytes = micropythonFs.size('filename.txt');
31+
var fileList = micropythonFs.ls();
3032

3133
var intelHexWithFs = micropythonFs.getIntelHex();
3234
```

0 commit comments

Comments
 (0)