I am looking to copy files from a directory structure over to a new folder. I am not looking to preserve the file structure, just get the files. The file structure is such that there can be nested folders, but anything in a folder named 'old' I do not want moved over.

I made a couple attempts at it, but my powershell knowledge is very limited.

Example being where the current file structure exists: Get-ChildItem -Path "C:\Example*" -include "*.txt -Recurse |% {Copy-Item $_.fullname "C:\Destination\"}

This gives me all the files all I want, including all the files I don't want. I do not want to include any files that are in the 'old' folder. To note: there are multiple 'old' folders. I tried -exclude, but it looks like it only pertains to the file name, and I am not sure how to -exclude on a path name, while still copying the files.

Any help?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

How about this:

C:\Example*" -include "*.txt -Recurse |
  ?{$_.fullname -notmatch '\\old\\'}|
    % {Copy-Item $_.fullname "C:\Destination\"}

Exclude everything that has '\old\' anywhere in it's path.

link|improve this answer
Thanks, this is what I am looking for! – Feety Feb 8 at 0:09
The question was a little ambiguous, and I couldn't tell if an "old" folder would have subfolders or not. This excludes both. – mjolinor Feb 8 at 0:14
Yes, it was ambiguous, and I did want the subfolders of 'old' excluded. I should have specified that. Thanks again! – Feety Feb 8 at 1:39
feedback

If we sneak a little where-object into the pipeline I think you'll get what you seek. Each object that has a property named Directory (System.IO.FileInfo) with a property named Name with a value of old will not be passed to Copy-Item.

Get-ChildItem -Path "C:\Example*" -include *.txt -Recurse | ? {-not ($_.Directory.Name -eq "old")} |  % {Copy-Item $_.fullname "C:\Destination\"}

(Untested)

link|improve this answer
Thanks, this is what I asked for. I appreciate the explanation on how to access the directory name. This will prove useful. Thank you! – Feety Feb 8 at 0:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.