You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Creates a new, empty directory at `path`. If needed, any non-existent ancestor paths are also created. If there is already a directory at `path`, this function does nothing (in particular, this is not considered to be an error).
/// Recursively deletes the file system entity at `path`. If there is no file system entity at `path`, this function does nothing (in particular, this is not considered to be an error).
/// Creates a symbolic link at `path` whose content points to `dest`. If `relative` is true, the symlink contents will be a relative path, otherwise it will be absolute.
/// The current working directory of the process (same as returned by POSIX' `getcwd()` function or Foundation's `currentDirectoryPath` method).
122
114
/// FIXME: This should probably go onto `FileSystem`, under the assumption that each file system has its own notion of the `current` working directory.
0 commit comments