Automatically open certain file types outside MATLAB

47 ビュー (過去 30 日間)
markushatg
markushatg 2012 年 11 月 7 日
コメント済み: IronLikeABrian 2021 年 2 月 25 日
Is there a way to tell MATLAB to always open files of certain types outside MATLAB when double clicked in the 'Current Folder' menu, saving me the trouble of right clicking and choosing 'Open Outside MATLAB'?
Thanks
  6 件のコメント
Walter Roberson
Walter Roberson 2020 年 2 月 6 日
uigetfile only fetches the name of a file. You can use fullfile to create the complete file name and call winopen() on that.
IronLikeABrian
IronLikeABrian 2021 年 2 月 25 日
Is there any progress regarding the initial question? I'd also prefere to double-click on Excel files resulting opening Excel.

サインインしてコメントする。

回答 (1 件)

Michael Jarboe
Michael Jarboe 2020 年 2 月 6 日
use 'winopen' function - specify full path and filename
%Open Multiple Files
OpenMe.Path{1} = 'C:\Users\YOUR_LOGIN_NAME\Desktop\';
OpenMe.Path{2} = 'C:\Users\YOUR_LOGIN_NAME\Desktop\FOLDER_NAME';
OpenMe.Path{3} = OpenMe.Path{1};
OpenMe.FileName{1} = 'JPEG_IMAGE.jpg';
OpenMe.FileName{2} = 'Excel_File.xlsx';
OpenMe.FileName{3} = 'MS_Word_File.docx';
for i = 1:3
winopen([OpenMe.Path{i} OpenMe.FileName{i}])
end
%Open Specific File
Open_Spec_File = 'C:\Users\YOUR_LOGIN_NAME\Desktop\JPEG_IMAGE.jpg'
winopen(Open_Spec_File)

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by