Expand description
Β§FileSystemProvider - Write Operations
Implementation of
FileSystemWriter for
MountainEnvironment
Provides secure, validated filesystem write access with workspace trust enforcement.
FunctionsΒ§
- copy_
directory_ πrecursive - Recursively copy a directory tree from
sourceintotarget. Iterative (uses an explicit stack of(SrcDir, DstDir)) so it canβt blow the Tokio task stack on very deep trees. Files inside re-usetokio::fs::copyfor fast path; directories are created withcreate_dir. Symlinks are dereferenced. - copy_
impl π - Copy operations implementation for MountainEnvironment
- create_
directory_ πimpl - CreateDirectory operations implementation for MountainEnvironment
- create_
file_ πimpl - CreateFile operations implementation for MountainEnvironment
- delete_
impl π - Delete operations implementation for MountainEnvironment
- rename_
impl π - Rename operations implementation for MountainEnvironment
- write_
file_ πimpl - Write operations implementation for MountainEnvironment