for 循环不打印包含空格的文件的完整文件名

发布于 2025-01-06 09:25:47 字数 184 浏览 0 评论 0原文

这是我迭代文件夹的 for 循环

for /f %A in ('dir /b "G:\Files Sample\Samples\zip\txt"') do echo "%A"

我的问题是当文件名中包含空格时 echo 语句不会回显文件的完整名称。

我该如何纠正这个问题?

This is my for loop that i iterate over a folder

for /f %A in ('dir /b "G:\Files Sample\Samples\zip\txt"') do echo "%A"

My problem is the echo statement does not echo the complete name of the file when the filename contains spaces in it.

How do i correct this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

执手闯天涯 2025-01-13 09:25:47

这将执行您想要的操作:

for /f "delims=" %A in ('dir /b "G:\Files Sample\Samples\zip\txt"') do @echo %A

您只需将 delims 设置为空,这样它就不会将输入拆分为空格上的列。

This will do what you want:

for /f "delims=" %A in ('dir /b "G:\Files Sample\Samples\zip\txt"') do @echo %A

You just needed to set delims to nothing so that it didn't split the input into columns on spaces.

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