在使用/ R遍历目录树时如何跳过根目录?

时间:2019-05-25 13:40:30

标签: batch-file

我想在树的除根目录之外的每个目录中创建一个suicune文本文件,但是我还在根目录中得到一个suicune txt文件。 我只希望在子文件夹中。

我尝试在集合中使用不同的组合来跳过根。 我尝试使用谷歌搜索解决方案以跳过根。 我已经搜索了/?


REM creates text file suicune 
REM in each directory of the tree
set path="%C:\Users\Username\Desktop\Files%"
cd %path%

for /R %%a in (.) do (
    cd %%a
    echo hi > suicune.txt
)

pause

我希望suicune.txt文件只能在目录的子文件夹中创建,但它也会在根目录中创建。

0 个答案:

没有答案