O que há de errado com minha sintaxe?
xcopy "J:\Common\NY SERTIFIKATBANK Buoyancy Reports\Nav Lights4515" "534515" /I /y /r /exclusions:"K:\Temp\TO UPLOADxcopy "J:\Common\NY SERTIFIKATBANK Buoyancy Reports\Nav Lights4515" "534515" /I /y /r /exclusions:"K:\Temp\TO UPLOAD%pre% BIJANs FILES0 BATcreator\exclusions.txt"
BIJANs FILES0 BATcreator\exclusions.txt"
xcopy
não tem uma opção /exclusions
.
Ele usa /exclude
, que é não , um arquivo de texto, mas uma lista de arquivos a serem excluídos.
Sintaxe
/EXCLUDE:file1[+file2][+file3]...
- The files can each contain one or more full or partial pathnames to be excluded.
When any of these match any part of the absolute path of a SOURCE file, then that file will be excluded.
For example, specifying a string like \obj\ or .obj will exclude all files underneath the directory obj or all files with the .obj extension respectively.
Fonte xcopy
Leitura adicional
- Um índice A-Z da linha de comando do Windows CMD - Uma excelente referência para todas as coisas relacionadas à linha do Windows cmd.
- xcopy - Copie arquivos e / ou árvores de diretórios para outra pasta.