Search found 2 matches
- 21 Mar 2017 02:18
- Forum: DOS Batch Forum
- Topic: Conditional copy
- Replies: 2
- Views: 2296
Re: Conditional copy
Thanks for your answer ! That would be the most relevant way to do it, but I'm working on an existing architecture and I can't simply move every files as I want with no consequences ^^ I actually managed to make it work, and learnt from my mistake: no whitespaces around the attribution = ! So I came...
- 20 Mar 2017 10:12
- Forum: DOS Batch Forum
- Topic: Conditional copy
- Replies: 2
- Views: 2296
Conditional copy
Hi all ! Quite new to batch (or at least to do more than call scripts and change directory) here... For my project, I'm trying to copy all dll from a directory in delivery directory... I can already to that "brainless" with : FOR /R %srcDir% %%f IN (*.dll) DO COPY %%f %destDir% But the goa...