gpt4 book ai didi

windows - 使用 Windows 命令行查看文件是否存在并重命名

转载 作者:可可西里 更新时间:2023-11-01 11:24:11 25 4
gpt4 key购买 nike

我花了很多时间试图解决这个问题,但感到非常沮丧。

我想做的就是查看文件是否存在(确实存在),然后重命名它。我在 Windows 10 的命令行中工作。

IF exist C:\content\info.txt (
ren "C:\content\info.txt" "C:\content\info_new.txt"
) ELSE (
echo "Couldn't find file."
)

我一直收到错误“命令的语法不正确”。我知道该文件存在,因为我之前运行了以下命令。

if exist C:\content\info.txt echo "info.txt is in C:\content\info.txt."

我将所有这些直接输入到命令提示符中,而不是从 .bat 文件中调用它。我在这里错过了什么吗?任何帮助将不胜感激。

最佳答案

重命名文件时不必提供完整位置。只需这样做:

 IF exist C:\content\info.txt (
ren "C:\content\info.txt" "info_new.txt"
) ELSE (
echo "Couldn't find file."
)

关于windows - 使用 Windows 命令行查看文件是否存在并重命名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46087340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com