MCPcopy Create free account
hub / github.com/bendudson/EuraliOS / remove_dir

Method remove_dir

euralios_std/src/server.rs:52–54  ·  view source on GitHub ↗

Lookup and remove subdirectory, returning the shared reference

(&mut self, _name: &str)

Source from the content-addressed store, hash-verified

50 }
51 /// Lookup and remove subdirectory, returning the shared reference
52 fn remove_dir(&mut self, _name: &str) -> Result<Arc<RwLock<dyn DirLike + Sync + Send>>, syscalls::SyscallError> {
53 Err(syscalls::SYSCALL_ERROR_NOT_IMPLEMENTED)
54 }
55 /// Lookup and remove file, returning the shared reference
56 fn remove_file(&mut self, _name: &str) -> Result<Arc<RwLock<dyn FileLike + Sync + Send>>, syscalls::SyscallError> {
57 Err(syscalls::SYSCALL_ERROR_NOT_IMPLEMENTED)

Callers

nothing calls this directly

Implementers 2

main.rspci/src/main.rs
main.rsramdisk/src/main.rs

Calls

no outgoing calls

Tested by

no test coverage detected