PPWizard-Commandline

home | PPWizard

 

Copying images to the output folder (all files expect of .it and .ih-files)

The following command copies all files in the src-folder and it's subdirectories in the out-folder.

ppwizard /Exclude:+*.ih /Exclude:+*.it /copy +.\src\*.* /output:out\{$path}\*.* > copy.log

Description:

/Exclude
Examples  
/Exclude:+*.ih exclude all .ih-files in the src-folder and it's subdirectories
/Exclude:*.ih exclude all .ih-files in the src-folder
/copy +.\src\*.* All files in the src-folder would be copied.

If I write "src\*.*" instead of ".\src\*.*" PPWizard shows an error message on my system.

The '+'-char in front of the folder means, that files in subdirectories would be copied, too.

/output:out\{$path}\*.* The files will be copied in the out-folder.

{$path} means, that subdirectories would be created while copying the files.

*.* means, that the files wouldn't be renamed.

> copy.log The results of the copy-action will be written in the file copy.log

Last update: 05.05.02