Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
diqiu50 committed Dec 19, 2024
1 parent 4fe5fe3 commit 2517afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/filesystem-fuse/src/filesystem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pub(crate) trait PathFileSystem: Send + Sync {
/// Get the file stat by parent file path and file name, if the file exists, return the file stat
async fn lookup(&self, parent: &str, name: &str) -> Result<FileStat>;

/// Read the directory by file path, if the is a valid directory, return the file stat list
/// Read the directory by file path, if the directory exists, return the file stat list
async fn read_dir(&self, path: &str) -> Result<Vec<FileStat>>;

/// Open the file by file path and flags, if the file exists, return the opened file
Expand Down

0 comments on commit 2517afa

Please sign in to comment.