bumping version

This commit is contained in:
John Andrews
2024-01-08 10:37:43 +13:00
parent 26701df8b1
commit e898c73a55

View File

@@ -65,6 +65,14 @@ public class Delete : Node
if (string.IsNullOrEmpty(path))
path = args.WorkingFile;
bool originalFile = path == args.FileName;
if (originalFile && args.IsRemote)
{
args.Logger?.ILog("Deleting original file remotely: " + args.LibraryFileName);
var result = args.DeleteRemote(args.LibraryFileName, false, null);
return 1;
}
if (IsDirectory(path))
{
try