Zum Inhalt

Copying files with exclusions

If you need to copy files from one directory to another one and would like to exclude some files it can be done using PowerShell pretty easy.

1
2
3
4
$source = 'C:\Temp1\*'
$dest = 'C:\Temp2\'
$exclude = @('*.pdb','*.config')
Copy-Item $source $dest -Recurse -Force -Exclude $exclude

In line 3 you can simply add only one specific filename or as in this case simply exclude files based on their extensions.

Published inWindows

Kommentare sind geschlossen.