gpt4 book ai didi

windows - 从列表中复制文件

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

我有一个包含 4000 张 .tif 图像的列表,我需要从包含 20,000 多张图像的文件夹中复制这些图像。

我正在尝试使用命令提示符来执行此操作,方法是使用通过谷歌搜索我的问题找到的代码。

代码如下:

for /f %a in H:\list.txt do copy %a H:\new

"H:\list.txt" is my list file
"H:\new" is where i want my files to be copied to

我在包含 .tif 文件 H:\Doc2 的文件夹中运行此命令,我不断收到:

H:\list.txt was unexpected at this time.

是什么导致了这个问题?我的列表设置不正确吗?

看起来像这样:

ABBA.TIF
ABBD.TIF
ABBQ.TIF

文件名后需要逗号还是冒号?

最佳答案

H:\list.txt 是一个文字,您想遍历文件的每一行。检查一下:

How do you loop through each line in a text file using a windows batch file?

for /F "tokens=*" %%A in (myfile.txt) do [process] %%A

建议:也用“windows”标记它。

关于windows - 从列表中复制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13958594/

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