Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create a table to track io_file progress #200

Merged
merged 1 commit into from
Mar 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions pkgs/io_file/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,45 @@ system API using FFI.
See
[package:io_file - a pure dart file system API](https://docs.google.com/document/d/17dPegdklLKQz4fjrRDHaN0ld7FlmK0prncZQUTx68nk/edit?usp=sharing)

## Progress

### FileSystem

| Feature | Android | Linux | iOS | macOS | Windows |
| :--- | :---: | :---: | :---: | :---: | :----: |
| canonicalize path | [ ] | [ ] | [ ] | [ ] | [ ] |
| copy file | [ ] | [ ] | [ ] | [ ] | [ ] |
| create directory | [ ] | [ ] | [ ] | [ ] | [ ] |
| create hard link | [ ] | [ ] | [ ] | [ ] | [ ] |
| create symbolic link | [ ] | [ ] | [ ] | [ ] | [ ] |
| create tmp directory | [ ] | [ ] | [ ] | [ ] | [ ] |
| create tmp file | [ ] | [ ] | [ ] | [ ] | [ ] |
| delete directory | [ ] | [ ] | [ ] | [ ] | [ ] |
| delete file | [ ] | [ ] | [ ] | [ ] | [ ] |
| delete tree | [ ] | [ ] | [ ] | [ ] | [ ] |
| enum dir contents | [ ] | [ ] | [ ] | [ ] | [ ] |
| exists | [ ] | [ ] | [ ] | [ ] | [ ] |
| get metadata (stat) | [ ] | [ ] | [ ] | [ ] | [ ] |
| open | [ ] | [ ] | [ ] | [ ] | [ ] |
| read file (bytes) | [ ] | [ ] | [ ] | [ ] | [ ] |
| read file (lines) | [ ] | [ ] | [ ] | [ ] | [ ] |
| read file (string) | [ ] | [ ] | [ ] | [ ] | [ ] |
| rename | [ ] | [ ] | [ ] | [ ] | [ ] |
| set permissions | [ ] | [ ] | [ ] | [ ] | [ ] |
| write file (bytes) | [ ] | [ ] | [ ] | [ ] | [ ] |
| write file (string) | [ ] | [ ] | [ ] | [ ] | [ ] |

### File

| Feature | Android | Linux | iOS | macOS | Windows |
| :--- | :---: | :---: | :---: | :---: | :----: |
| get file descriptor | [ ] | [ ] | [ ] | [ ] | [ ] |
| get file length | [ ] | [ ] | [ ] | [ ] | [ ] |
| get file metadata | [ ] | [ ] | [ ] | [ ] | [ ] |
| get file position | [ ] | [ ] | [ ] | [ ] | [ ] |
| read | [ ] | [ ] | [ ] | [ ] | [ ] |
| write | [ ] | [ ] | [ ] | [ ] | [ ] |

## Status: Experimental

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