for 循环不打印包含空格的文件的完整文件名
这是我迭代文件夹的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将执行您想要的操作:
您只需将
delims
设置为空,这样它就不会将输入拆分为空格上的列。This will do what you want:
You just needed to set
delims
to nothing so that it didn't split the input into columns on spaces.