批处理程序显示具有完整目录的文件
我想将特定目录中具有相同扩展名的所有文件的 URL 存储到一个日志文件中。有没有可用的批处理命令。
示例 我想将所有带有 *.TXT 扩展名的文件复制到一个日志文件及其目录扩展名(URL)中
I want to store the URL of all files with same extension in specific directory to one Log file. IS there any batch command available for this.
Exapmle
I want to copy all files with *.TXT extension into one log file with its directory extension(URL)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用:
请注意
>>
将附加到文件中,如果不存在则创建一个。这对于一次性来说效果很好,但是如果您经常运行此操作,您将需要正确初始化该文件。you could use:
note that the
>>
will append to the file, or create one if one does not exist. This works well for a one-off, but you will want to properly initialize the file if you are running this often.可以使用命令提示符下可用的
TREE
命令 http://www.easydos .com/tree.html 但是您不能通过它列出的文件类型来限制它。Could use the
TREE
command available by the Command Prompt http://www.easydos.com/tree.html however you can't limit it by what type of files it lists./s 是完整路径的技巧,但包括子文件夹。
/s is the trick with complete path, BUT includes subfolders to.