by hpc_zy
matlab,資料夾或檔案的,建立、複製、移動、刪除、重新命名等等
這裡先把寫好的demo放出來,後續會塊講解、補充。
clear; clc
rootpath = '.\';
% 生成檔案(用於測試)
fp =
fopen
('test.txt'
,'w');
fclose
(fp)
;% 新建資料夾(路徑)
subpath1 =
fullfile
(rootpath,
'1')
;subpath2 =
fullfile
(rootpath,
'2');if
~exist
(subpath1,
'dir'
)mkdir
(subpath1)
% 新建
endif
~exist
(subpath2,
'dir'
)mkdir
(subpath2)
% 新建
end% 移動檔案
filename =
'test.txt'
;source =
fullfile
(rootpath,filename)
;destination =
fullfile
(subpath1,filename)
;movefile
(source,destination)
;% 移動
% 複製檔案
source =
fullfile
(subpath1,filename)
;destination =
fullfile
(subpath2,filename)
;copyfile
(source,destination)
;% 複製
% 刪除檔案
file =
fullfile
(subpath1,filename)
;recycle
('on'
)% 設定'off',則不進入**站,直接刪除。
delete
(file)
% 刪除資料夾
rmdir
(subpath1)
try rmdir
(subpath2)
% 注:若資料夾內有檔案,是無法刪除的
catch
disp
('資料夾內有檔案,無法刪除'
)end
% 修改資料夾名
subpath3 =
fullfile
(rootpath,
'3')
;movefile
(subpath2,subpath3)
;% 沒有直接修改資料夾名的函式,可以通過移動實現修改
matlab檔案 資料夾操作
定義路徑 f fullfile c download pwd 返回當前路徑cd c toolbox matlab demos 切換當前工作目錄到demos cd 切換當前工作目錄到matlabboolean isfolder f boolean isempty f files dir f files...
MATLAB 資料夾操作管理
在matlab中提供了很多的資料夾操作命令,可以在matlab的命令列視窗列出當前資料夾 顯示檔案和資料夾及新建資料夾和刪除資料夾等。常用的資料夾操作命令 命令說明 命令說明 pwd返回當前的資料夾 mkdir newdir 建立名為newdir的資料夾 matlabroot 返回matlab的安裝...
資料夾的位置 檔案與資料夾管理操作
檔案與資料夾管理操作 1資源管理 資源管理器 windows資源管理器以資料夾瀏覽視窗形式顯示計算機資源,顯示計算機上的檔案 資料夾和驅動器的分層結構,同時顯示對映到計算機上的驅動器號的所有網路驅動器名稱。檔案和資料夾管理操作1 認識 計算機 雙擊桌面 計算機 圖示後進入以下視窗 2 檔案和資料夾的...