| Commit message (Collapse) | Author | Age |
|
|
|
|
|
| |
When copying a file, if a file already exists at the destination path
with the same last-modified date and the same size, the file is not
copied.
|
|
|
|
|
| |
Using the original path preserves the original unresolved path of the
entry, which is important for directory traversal tasks.
|
|
|
|
|
| |
The copy-contents-of-a-directory logic as using the copy_file function,
which would fail if the directory contained another directory.
|
|
|
|
|
|
| |
Previously, the value of the original_path field of each entry returned
by the list_directory function was using the canonicalized directory
path, not the directory path as originally passed to the function.
|
|
|
|
|
| |
This was thought to be impossible, but it was found to trigger when
opening the parent directory of a relative path in the form './file'.
|
| |
|
|
|