Windows 批处理文件 - 使用带有空格的文件名追加

发布于 2024-11-06 12:39:49 字数 230 浏览 0 评论 0原文

我正在创建一个批处理文件,以将一些硬编码文本与其他一些现有文本文件合并。

为此,我正在使用以下内容。

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 技术交流群。

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

发布评论

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

评论(1

无妨# 2024-11-13 12:39:49

我不知道您的追加批处理文件在做什么,但您可以简单地使用复制来连接两个文件。

我不清楚需要附加什么内容,但以下内容会将 text.txt 的内容附加到 C:\test 123\test.txt 通过将所有内容写入C:\test 123\test.txt

set txtFile=.\text.txt
copy "C:\test 123\test.txt" /a + %txtFile% /a "C:\test 123\test.txt"

如果您想要不同的输出文件,只需更改最后一个参数即可。

顺便说一句:最好不要依赖特定的工作目录

以下内容:

set txtFile=%~dp0text.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 to C:\test 123\test.txt by writing everything to C:\test 123\test.txt.

set txtFile=.\text.txt
copy "C:\test 123\test.txt" /a + %txtFile% /a "C:\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:

set txtFile=%~dp0text.txt

makes sure that the text.txt is used that is in the same directory as your batch file.

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