vote up 1 vote down star

This

 for /f "tokens=*" %i in ('dir *sonic.exe /s /b') do copy /y "%i" D:\temp\utils\

The question is there a better or shorter way to do it ?

p.s. I know that "tokens=*" could be omitted if the file path does not have spaces ..

Update: I found a shorter ways of finding ( not copying ) from my old cheat sheets:

::START - RUN - cmd.exe
 dir d:\libs\*SubSonic*.dll /s /b>>list.txt&list.txt
:: START - RUN - CMD.EXE 
where /R D:\libs\ *SubSonic*
flag

Is PS completely unacceptable? :P (IMO It's excruciating figuring out this type of stuff in CMD.EXE relative to investing the same time in PowerShell) – Ruben Bartelink May 26 at 8:05
Not at all - but than the question should be : Copy file(s) containing string to a location oneliner - is there a better way with PowerShell ? – YordanGeorgiev May 28 at 6:51
But when you have a really good hammer... :D – Ruben Bartelink May 28 at 7:44

3 Answers

vote up 1 vote down

You might be able to do this with XCOPY.

This will work but will copy the directory structure too which I don't think is what you want:

XCOPY /S *sonic.exe D:\temp\utils
link|flag
Actually it copied only the files containing the string ... XCOPY /S *sonic.exe D:\temp\utils\tmp D:ORM\SubSonic_2.1_Final_Source\src\SubCommander\bin\Debug\sonic.exe D:ORM\SubSonic_2.1_Final_Source\src\SubCommander\obj\Debug\sonic.exe 2 File(s) copied – YordanGeorgiev May 26 at 7:52
It will only copy matching files, but if the source file is in a subdirectory called bin then a destination file will be put in a subdirectory called bin too. The FOR loop wouldn't do this, but if you want the subdirectories in the destination then XCOPY is definitely what you want. – Dave Webb May 26 at 7:54
Yep , the folder structure was unneeded and did not exactly answered the question ... I was way to fast to mark the answer without properly testing it ... Anyway thanks for the answers and comments !!! – YordanGeorgiev May 26 at 7:56
You can unmark my answer as accepted. Just click on it again. I'd like to find out the best answer too! – Dave Webb May 26 at 7:57
done ; ) Sorry had to work also a bit ... ; ) – YordanGeorgiev May 26 at 13:03
vote up 1 vote down

Something like

dir -r -i *sonic.exe | select-string "tokens=" | % {cp $_ d:\temp\utils}

? [in PS]

link|flag
+1 for providing working sample. Thanks. Simple theory without working code about problems discussed here is not very useful ... – YordanGeorgiev May 28 at 7:35
Amusingly, I normally dont post code and send theory (and dont get +1s :D)! (And I didnt test this, though I do similar stuff regularly). If you're interested in PS, there is a new edition of the Payette book on the way to add to your wishlist - it's probably best for devs (there are lots of other good books on PS out there too) – Ruben Bartelink May 28 at 7:43
vote up 0 vote down check

Argh ... Hopefully I am wrong. The answer to my knowledge and this answer participation so far ... NO.

Please, comment or hit new answer I will set it as an answer .

link|flag

Your Answer

Get an OpenID
or

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