basename | Return the last path segment. | source |
createFileSystem | Create the runtime-native filesystem implementation. | source |
cwd | Return the current working directory. | source |
dirname | Return the parent directory path. | source |
exists | Return false for a missing path and propagate every other filesystem error. | source |
extname | Return the file extension for a path. | source |
isFileSnapshotChangedError | Return whether a value is a framework-created file snapshot change error. | source |
isNotFoundError | | source |
join | Join and normalize path segments using their detected path flavor. | source |
lstat | Read file metadata without following a terminal symbolic link. | source |
mkdir | Create a directory. | source |
readDir | Read directory entries. | source |
readTextFile | Read a file as text. | source |
realPath | Resolve a path to its canonical absolute form, following symlinks. Throws if the path does not exist. Useful for containment checks where a symlink could otherwise escape an intended directory. | source |
remove | Remove a file or directory, rejecting when the path does not exist. | source |
resolve | Resolve path segments to an absolute, normalized path. | source |
writeTextFile | Write text to a file. | source |