matlab中movefile和copyfile的重要用途

clear
clc

cd('C:\Documents and Settings\Administrator\桌面\matlab\test'); % 设置当前目录
%  此时test文件夹中有:文件夹1, 文件夹2, 文件1.txt, 文件2.txt

movefile('1.txt', '11.txt');  % 把1.txt剪切成11.txt(1.txt不存在了),实际上相当于改名
copyfile('2.txt', '22.txt');  % 把2.txt复制成22.txt(2.txt依然存在)

movefile('11.txt', '1');      % 把11.txt剪切到文件夹1中
copyfile('22.txt', '2');      % 把22.txt复制到文件夹2中

你可能感兴趣的:(matlab中movefile和copyfile的重要用途)