Matlab 獲取和儲存檔案路徑選擇對話方塊

2021-10-25 18:33:38 字數 674 閱讀 1757

讀取檔案的內聯**片

% a code block

[filename, pathname, fileindex] = uigetfile(, ...

'pick an excel file');

if fileindex == 0 % 如果選擇了『cancel』

set(handles.edit2, '您沒有選擇檔案');

else

file_path = [pathname filename];

set(handles.edit2, 'string', file_path );

end

儲存檔案的內聯**片

% a code block

[filename, pathname, fileindex] = uiputfile('預設的需要儲存的檔名及副檔名',『檔案儲存為');

if fileindex == 0 % 如果選擇了『cancel』

return;

else

file_path = [pathname filename];

set(handles.edit2, 'string', file_path );

end

matlab 檔案路徑操作

1 fullfile 用於將若干個字串連線成乙個完整的路徑,例如 filepath fullfile d matlab example.txt 效果是 filepath d matlab example.txt 2 dir 用於列出乙個目錄的內容,返回值為乙個結構體型別,其中 name 檔案或者目錄...

檔案獲取路徑

獲取模組的完整路徑,包含檔名 system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取和設定當前目錄 該程序從中啟動的目錄 的完全限定目錄。system.environment.currentdirectory 獲取應用程...

獲取檔案路徑

相對路徑和絕對路徑的轉換 unit xpath inte ce uses shlwapi,windows,sysutils 取絕對路徑的函式。需要引用 shlwapi.pas 參考路徑 相對路徑 s getabsolutepath c windows system32 demo.txt s 將得到 ...