
robocopy:ai:44dd8
create a watch folder and move *.tif' *.tiff files to a specific folder with list output in tsv file
$ robocopy C:\source_folder C:\destination_folder *.tif *.tiff /MOV /LOG:C:\output.tsv
try on your machine
This command uses robocopy to move all files with extension .tif or .tiff from the source_folder to the destination_folder. The output of the operation will be logged in a tsv file named output.tsv
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.
Questions that are answered by this command:
- create a watch folder and move *.tif' *.tiff files to a specific folder with list output in tsv file?