Delete Folders after Move
-
Does the command tool support deleting the folders after the move?
I am using the following which copies all of the required directories and files.
pacomp -m -c2 -w -p -r c:\to_burn\ArchiveSink.zip “c:\temp*.*”
After it compresses to the location it deletes the old files, but leaves the old folders. Am I missing a switch?
Thank You,
Adam
-
The command -m is “move files to archive [files only]”
See MANUAL.TXT for PACL.I don’t know of an PACL option/command to delete folders.
(
If you are careful and brave, create a batch file with :-
pacomp -m -c2 -w -p -r c:\to_burn\ArchiveSink.zip “c:\temp*.*”
RMDIR /S C:\TEMP
)