Eu preciso copiar todos os projetos, mas excluir a pasta node_modules
Você pode usar xcopy
junto com a opção exclude
:
xcopy www backup /exclude:except.txt
-
except.txt
contém a lista de arquivos de diretórios a serem excluídos.
except.txt:
node_modules
/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 directoryobj
or all files with the.obj
extension respectively.
Fonte xcopy - Copie arquivos e / ou árvores de diretórios para outra pasta.
Outras leituras
- Um índice A-Z da linha de comando do Windows CMD - Uma excelente referência para todas as coisas relacionadas à linha do Windows cmd.