Usando xcopy / exclude para excluir .o, mas inclua .odt?

0

De xcopy /?

/EXCLUDE:file1[+file2][+file3]...
               Specifies a list of files containing strings.  Each string
               should be in a separate line in the files.  When any of the
               strings match any part of the absolute path of the file to be
               copied, that file will be excluded from being copied.  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.

Mas digamos que eu queira EXCLUDE todos os arquivos .o e INCLUDE todos os arquivos .odt . Se fosse regex, eu poderia usar \.o$ . Mas não é, é?

Como faço isso?

(Eu também não me oponho a usar o rsync ou qualquer outra coisa).

    
por JimB 04.08.2011 / 22:43

1 resposta

1

Você pode tentar robocopy , a% O/xf switch pode ser usado para excluir extensões específicas.

    
por 04.08.2011 / 23:19