使用fid直接加入路徑讀取即可; fid = fopen("X:\路徑\*.JPG"); Matlab使用dir函式獲得指定資料夾下的所有子資料夾和檔案,並存放在在一種為檔案結構體陣列中. dir函式可以有呼叫方式為: dir(".") 列出當前目錄下所有子資料夾和檔案; dir("G:\Matlab") 列出指定目錄下所有子資料夾和檔案; dir("*.m") 列出當前目錄下符合正則表示式的資料夾和檔案; 得到的為結構體陣列每個元素都是如下形式的結構體: name -- filename date -- modification date bytes -- number of bytes allocated to the file isdir -- 1 if name is a directory and 0 if not datenum -- modification date as a MATLAB serial date number 分別為檔名,修改日期,大小,是否為目錄,Matlab特定的修改日期. 可以提取出檔名以作讀取和儲存用.
使用fid直接加入路徑讀取即可; fid = fopen("X:\路徑\*.JPG"); Matlab使用dir函式獲得指定資料夾下的所有子資料夾和檔案,並存放在在一種為檔案結構體陣列中. dir函式可以有呼叫方式為: dir(".") 列出當前目錄下所有子資料夾和檔案; dir("G:\Matlab") 列出指定目錄下所有子資料夾和檔案; dir("*.m") 列出當前目錄下符合正則表示式的資料夾和檔案; 得到的為結構體陣列每個元素都是如下形式的結構體: name -- filename date -- modification date bytes -- number of bytes allocated to the file isdir -- 1 if name is a directory and 0 if not datenum -- modification date as a MATLAB serial date number 分別為檔名,修改日期,大小,是否為目錄,Matlab特定的修改日期. 可以提取出檔名以作讀取和儲存用.