Tagged Questions
0
votes
2answers
603 views
“cp --parents” in batch file/VBScript
How would you write this having only batch files and VBScript at your disposal in a Windows environment?
find -name '*.ext' -exec cp --parents {} destination/ \;
Or put it this way:
Look ...