正如标题所解释的那样。
使用批处理脚本。将文件从一个目录复制到另一个目录,然后提示我将其重命名为。
如果目标目录中已存在类似文件,则只需替换/覆盖它。
我可以在批处理脚本中写这样的东西吗?我知道如何从一个目录复制到另一个目录。但第二部分我不知道该怎么做。
答案 0 :(得分:0)
我认为这就是你要找的东西:
@echo off
set "oldFile=C:\someDirectory\test.txt"
set "newDirectory=C:\someOtherDirectory\"
set /p "newFile=Please enter a filename for the new file: "
copy /y "%oldFile%" "%newDirectory%%newFile%"