XCOPY / exclui referência de um arquivo ext que não está no diretório de trabalho

1

Eu tentei referenciar o diretório do arquivo de texto após /exclusions .

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 UPLOAD
xcopy "J:\Common\NY SERTIFIKATBANK Buoyancy Reports\Nav Lights4515"   "534515" /I /y /r /exclusions:"K:\Temp\TO UPLOAD%pre% BIJANs FILES0 BATcreator\exclusions.txt"
pause
BIJANs FILES0 BATcreator\exclusions.txt" pause
    
por Bijan Khadembashi 23.06.2016 / 03:28

1 resposta

0

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 UPLOAD
xcopy "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

por 23.06.2016 / 17:52