@@ -4,6 +4,45 @@ system API using FFI.
4
4
See
5
5
[ package: io_file - a pure dart file system API] ( https://docs.google.com/document/d/17dPegdklLKQz4fjrRDHaN0ld7FlmK0prncZQUTx68nk/edit?usp=sharing )
6
6
7
+ ## Progress
8
+
9
+ ### FileSystem
10
+
11
+ | Feature | Android | Linux | iOS | macOS | Windows |
12
+ | :--- | :---: | :---: | :---: | :---: | :----: |
13
+ | canonicalize path | [ ] | [ ] | [ ] | [ ] | [ ] |
14
+ | copy file | [ ] | [ ] | [ ] | [ ] | [ ] |
15
+ | create directory | [ ] | [ ] | [ ] | [ ] | [ ] |
16
+ | create hard link | [ ] | [ ] | [ ] | [ ] | [ ] |
17
+ | create symbolic link | [ ] | [ ] | [ ] | [ ] | [ ] |
18
+ | create tmp directory | [ ] | [ ] | [ ] | [ ] | [ ] |
19
+ | create tmp file | [ ] | [ ] | [ ] | [ ] | [ ] |
20
+ | delete directory | [ ] | [ ] | [ ] | [ ] | [ ] |
21
+ | delete file | [ ] | [ ] | [ ] | [ ] | [ ] |
22
+ | delete tree | [ ] | [ ] | [ ] | [ ] | [ ] |
23
+ | enum dir contents | [ ] | [ ] | [ ] | [ ] | [ ] |
24
+ | exists | [ ] | [ ] | [ ] | [ ] | [ ] |
25
+ | get metadata (stat) | [ ] | [ ] | [ ] | [ ] | [ ] |
26
+ | open | [ ] | [ ] | [ ] | [ ] | [ ] |
27
+ | read file (bytes) | [ ] | [ ] | [ ] | [ ] | [ ] |
28
+ | read file (lines) | [ ] | [ ] | [ ] | [ ] | [ ] |
29
+ | read file (string) | [ ] | [ ] | [ ] | [ ] | [ ] |
30
+ | rename | [ ] | [ ] | [ ] | [ ] | [ ] |
31
+ | set permissions | [ ] | [ ] | [ ] | [ ] | [ ] |
32
+ | write file (bytes) | [ ] | [ ] | [ ] | [ ] | [ ] |
33
+ | write file (string) | [ ] | [ ] | [ ] | [ ] | [ ] |
34
+
35
+ ### File
36
+
37
+ | Feature | Android | Linux | iOS | macOS | Windows |
38
+ | :--- | :---: | :---: | :---: | :---: | :----: |
39
+ | get file descriptor | [ ] | [ ] | [ ] | [ ] | [ ] |
40
+ | get file length | [ ] | [ ] | [ ] | [ ] | [ ] |
41
+ | get file metadata | [ ] | [ ] | [ ] | [ ] | [ ] |
42
+ | get file position | [ ] | [ ] | [ ] | [ ] | [ ] |
43
+ | read | [ ] | [ ] | [ ] | [ ] | [ ] |
44
+ | write | [ ] | [ ] | [ ] | [ ] | [ ] |
45
+
7
46
## Status: Experimental
8
47
9
48
** NOTE** : This package is currently experimental and published under the
0 commit comments