mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
69303e2149
This a complex boring PR that shifts around code (primarily) in cli/fs.rs and cli/ops/fs.rs. The gain of this refactoring is to ease the way for #4188 and #4017, and also to avoid some future development pain. Mostly there is no change in functionality. Except: * squashed bugs where op_utime and op_chown weren't using `resolve_from_cwd` * eliminated the use of the external `remove_dir_all` crate. * op_chmod now only queries metadata to verify file/dir exists on Windows (it will already fail on Unix if it doesn't) * op_chown now verifies the file/dir's existence on Windows like chmod does. |
||
---|---|---|
.. | ||
chmod.ts | ||
chown.ts | ||
copy_file.ts | ||
dir.ts | ||
link.ts | ||
make_temp.ts | ||
mkdir.ts | ||
open.ts | ||
read_dir.ts | ||
read_link.ts | ||
realpath.ts | ||
remove.ts | ||
rename.ts | ||
seek.ts | ||
stat.ts | ||
symlink.ts | ||
truncate.ts | ||
umask.ts | ||
utime.ts |