How to import a specific file

15 ビュー (過去 30 日間)
Shane
Shane 2012 年 12 月 19 日
I know how to import a specific file, but what if matlab has two folders set as pathways to check of which both have same filename and filetype, identical.
example: "example.txt"
and their in both folders, and if you importdata('example.txt');
I assume that will just select one of them depending on whichever it encounters first.
Is there a way to select the file through some function I am unaware of?
Cheers, Shane

採用された回答

Image Analyst
Image Analyst 2012 年 12 月 19 日
Use fullfile() to specify the folder and full file name (path + base file name + extension) of the one you want to import.
fullFileName = fullfile(folder1, 'example.txt');
if exist(fullFileName, 'file')
csvread(fullFileName);
else
message = sprintf('Warning: %s does not exist', fullFileName);
uiwait(warndlg(message));
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNaNs についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by