matlab批量移动文件(movefile)

♀尐吖头ヾ 提交于 2020-02-13 17:14:07

函数

movefile
移动或重命名文件或文件夹
movefile source destination

copyfile
复制文件或文件夹
copyfile source destination

代码

tic 
bar = waitbar(0,"数据移动中...")
for i=2016009:8:2016361
    str = num2str(i);
    spath = ['D:\DATA\GPP\MOD17A2\1HDF\2016\','*',str,'*.tif'];
    dpath =['D:\DATA\GPP\MOD17A2\1HDF\2016\tif\',str];
    movefile(spath,dpath);
    waitbar((i-2016008)/(2016361-2016008),bar);
end
toc 
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!