笔记:
路径操作:
定义路径:
f = fullfile("c","download");
pwd %返回当前路径
cd('c:/toolbox/matlab/demos') %切换当前工作目录到demos
cd .. %切换当前工作目录到matlab
文件夹操作:
boolean isfolder(f)
boolean isempty(f)
files=dir(f)
files(3).name
folder
date
bytes
isdir
datenum
length(files)
strncmp(files(ii).name, '.', 1)
%因为files得到的前几个元素是".",所以比较两个字符串前1个字母是否完全匹配
copyfile(oldpath, newpath);
文件操作:
copyfile(oldpath, newpath);
io
fid = fopen('D:\360Downloads\11\result.txt');
tline=fgetl(fid); %从文件中读取行,删除文件换行符,返回字符串
matlab读取文档后截取特定字符
fid = fopen('D:\360Downloads\11\result.txt');
%打开
tline=fgetl(fid); %从文件中读取行,删除文件换行符,返回字符串
%获取第一行的行数列数
[row col] = size(tline);
% 获取‘print’所在的列数
print = findstr(tline,'print');
vein = findstr(tline,'vein') ;
user_id = findstr(tline,'user_id:44 ');
p_value = str2num(tline(1,print+6:vein-2));
v_value = str2num(tline(1,vein+5:user_id-2));
复制文件夹下所有jpg文件
f=fullfile('1')
move(f)
function move(f)
%输入路径,对文件夹下的所有文件执行
if exist(f)~=0
files = dir(f)
% move_file(f)
count =length(files);
if count<3
return;
end
for i = 3:count
subf = fullfile('1',files(i).name)
if isfolder(subf) && ~isempty(subf)
move(subf)
else
move_file(f)
end
end
end
end
function move_file(image0Folder)
% 复制文件夹下所有zip文件,不包括子文件夹
image0File=dir(fullfile(image0Folder,'*.jpg'));
count=length(image0File);
% 遍历复制
for i = 1:count
name = image0File(i).name;
image0Path = [image0Folder,'\',name];
copyfile(image0Path,'D:\codestudy\fun_matlab_code\move_file\2'); %%复制前地址,复制后地址
end
end
疑问:
怎样复制文件并且重命名?
txt文件打开乱码,怎么更改编码方式?