标签:
Author:Maddock
Date:2015-01-20
判断文件是否存在
infilename = [str,‘\lena.jpg‘]; sgc_exist = exist(infilename, ‘file‘); % 由变量 sgc_exist 返回文件是否存在,因为是判断文件是否存在,所以第二个参数写‘file‘ if sgc_exist ~= 0 disp(‘lena.jpg is exist‘); end
标签:
原文地址:http://www.cnblogs.com/adong7639/p/4236579.html