Skip to content

Commit b40c420

Browse files
authored
Create a table to track io_file progress (#200)
1 parent b991405 commit b40c420

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

pkgs/io_file/README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,45 @@ system API using FFI.
44
See
55
[package:io_file - a pure dart file system API](https://docs.google.com/document/d/17dPegdklLKQz4fjrRDHaN0ld7FlmK0prncZQUTx68nk/edit?usp=sharing)
66

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+
746
## Status: Experimental
847

948
**NOTE**: This package is currently experimental and published under the

0 commit comments

Comments
 (0)