标签: matlab file copy indices
我要复制另一个文件夹中包含在源文件夹中的多个文件。 特定的文件必须被复制,并且我知道它们在源文件夹中的索引。
我该怎么做?我尝试使用该复制文件,但是它只能使用一个文件名和一个文件。
这是我的代码:
source='\folder'; dest='\folder'; index= []; for i = 1:length(index) copyfile(index(i),dest) end
其中index是一个双精度数组。