We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a file was deleted, and an item with a parent that has the same path of that file was also deleted, rip fail to delete the file.
E.g., assuming graveyard is /trash and current folder is /:
/trash
/
$ touch item $ rip item $ mkdir item $ touch item/file $ rip item/file error: Failed to bury file caused by: Failed to move /item/file to /trash/item/file caused by: Not a directory (os error 20)
rip will try to move file to /trash/item/file, but does not check if /trash/item exists and is a file.
file
/trash/item/file
/trash/item
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If a file was deleted, and an item with a parent that has the same path of that file was also deleted, rip fail to delete the file.
E.g., assuming graveyard is
/trash
and current folder is/
:rip will try to move
file
to/trash/item/file
, but does not check if/trash/item
exists and is a file.The text was updated successfully, but these errors were encountered: