Copy directories if their subdirectories contain “connect.txt”

后端 未结 1 1804
野趣味
野趣味 2021-01-29 11:57

I want to copy multiple directories from one location to another location only if any of the subdirectories of those contain connect.txt file in them.

Examp

相关标签:
1条回答
  • 2021-01-29 12:17

    move *\*\connect.txt C:\Desktop This uses a regular expression which would work if you're really wanting to look only under the subdirectories of all directories at some location.

    0 讨论(0)
提交回复
热议问题