RatCornu / efs

An OS and architecture independent implementation of some Unix filesystems in Rust.

Home Page:https://crates.io/crates/efs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Improve `Filesystem` and `File`s traits

RatCornu opened this issue · comments

Currently, the FileSystem, File, Directory, ... traits does not all support all basic write operations: it is necessary to add

  • add/remove a file in a directory;
  • set the stored path in a symbolic link;
  • truncate a regular file;
  • copy/move/rename a file;
  • set file's permissions;
  • ...