|
Quest: Trying to delete a file type (.avi) from zips and rar files using this (non working) command:
@for %%I in (*.zip) do Izarcc -d %%I *.avi -r
@for %%I in (*.zip) do 7z d %%I *.avi -r
@for %%I in (*.zip) do rar -d %%I *.avi -r
None of these will go through sub directories and perform the delete function inside the zip or rar files. But they WILL delete if the zip or rar is in the same directory as the bat (or cmd) file.
Please help me delete from sub-directories
Brian
|