Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用脚本创建包含目录 C:\sample\ 中所有文件名的文本文件?
我在 stackoverflow 上看到过类似的主题,但它们是在 Perl 或 VB6 中......这可能在 Windows 7 的批处理文件中实现吗?
一个简单的命令就可以了:
dir /b c:\sample > out.txt
dir /s/b c:\sample\*.* > somefile.txt可能是你正在寻找的。
dir /s/b c:\sample\*.* > somefile.txt