批处理程序显示具有完整目录的文件

发布于 2024-08-27 10:48:23 字数 110 浏览 5 评论 0原文

我想将特定目录中具有相同扩展名的所有文件的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

ぺ禁宫浮华殁 2024-09-03 10:48:24

您可以使用:

for /f %a in ('dir /b *.TXT') do echo %~fsa >> myLog.txt

请注意 >> 将附加到文件中,如果不存在则创建一个。这对于一次性来说效果很好,但是如果您经常运行此操作,您将需要正确初始化该文件。

you could use:

for /f %a in ('dir /b *.TXT') do echo %~fsa >> myLog.txt

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.

浅笑轻吟梦一曲 2024-09-03 10:48:24

可以使用命令提示符下可用的 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.

坏尐絯 2024-09-03 10:48:24
dir /a /s /b "DIRECTORY\*.txt" >logfile.log

/s 是完整路径的技巧,但包括子文件夹。

dir /a /s /b "DIRECTORY\*.txt" >logfile.log

/s is the trick with complete path, BUT includes subfolders to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文