如果存在命令问题

发布于 2025-01-06 14:56:14 字数 275 浏览 1 评论 0原文

我创建了一个批处理文件,该文件应该进入一个文件夹来检查文件是否存在,如果存在,则需要将该文件复制到另一个目录。问题是每次我尝试运行批处理文件时都会收到错误:

此时出现意外的“text.txt”

,目前我正在运行类似于以下的代码:(更新)

if exist "text.txt" (copy "text.txt" C:\directory\copiedFile)

I created a batch file that is supposed to go into a folder to check to see if a file exists, and if it exists, it needs to copy that file to another directory. The problem is every time I try and run the batch file I get the error:

"text.txt" was unexpected at this time

and currently I am running code similar to this: (UPDATED)

if exist "text.txt" (copy "text.txt" C:\directory\copiedFile)

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

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

发布评论

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

评论(2

不再让梦枯萎 2025-01-13 14:56:14

它应该是EXIST,而不是EXISTS

IF EXIST "text.txt" COPY C:\directory\copiedfile

It should be EXIST, not EXISTS.

IF EXIST "text.txt" COPY C:\directory\copiedfile
万劫不复 2025-01-13 14:56:14

我认为您使用的语法有点不对劲。

IF EXIST text.txt (复制text.txt C:\directory\text_copy.txt)

I think the syntax you are using is a bit off.

IF EXIST text.txt (copy text.txt C:\directory\text_copy.txt)

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