标签: windows batch-file
使用脚本如何创建包含目录C:\ sample \?
我在stackoverflow上看到了类似的主题,但是它们在Perl或VB6中...是否可以在Windows 7的批处理文件中进行此操作?
答案 0 :(得分:2)
一个简单的命令可以:
dir /b c:\sample > out.txt
答案 1 :(得分:1)
dir /s/b c:\sample\*.* > somefile.txt可能就是你要找的东西。
dir /s/b c:\sample\*.* > somefile.txt