Windows 批处理文件 - 使用带有空格的文件名追加
我正在创建一个批处理文件,以将一些硬编码文本与其他一些现有文本文件合并。
为此,我正在使用以下内容。
set "txtFile=.\text.txt"
call:Append "C:\test 123\test.txt" %textFile%
在这里,当我执行它时,它会抛出一个错误,因为它无法继续处理路径,因为它有空格。
应该如何解决这个问题。
I am creating a batch file to consolidate some hard coded text with a few of other existing text files.
for this I am using the below.
set "txtFile=.\text.txt"
call:Append "C:\test 123\test.txt" %textFile%
over here, when I execute it, it thros an error as it is not able to proceed with the path as it has spaces.
how should this be addressed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道您的追加批处理文件在做什么,但您可以简单地使用复制来连接两个文件。
我不清楚需要附加什么内容,但以下内容会将
text.txt
的内容附加到C:\test 123\test.txt
通过将所有内容写入C:\test 123\test.txt
。如果您想要不同的输出文件,只需更改最后一个参数即可。
顺便说一句:最好不要依赖特定的工作目录
以下内容:
确保使用的
text.txt
与批处理文件位于同一目录中。I have no idea what your append batch file is doing, but you can simply use copy to concatenate two files.
It's not clear to me what the needs to be appended to what, but the following will append the contents of
text.txt
toC:\test 123\test.txt
by writing everything toC:\test 123\test.txt
.If you want a different output file, just change the last parameter.
Btw: it's better to not rely on a specific working directory
The following:
makes sure that the
text.txt
is used that is in the same directory as your batch file.