how to fix this upper directory link?

1 回表示 (過去 30 日間)
Leon
Leon 2020 年 2 月 15 日
コメント済み: Leon 2020 年 2 月 15 日
File_W = fullfile(app.Path, '..', 'MyFolder', [fileName, '_myFormat_.xlsx']);
writetable(T1, File_W);
The above is my code to write my Excel file in a upper level directory (parallel with app.Path, in this case: /Voumes/DATA/ABC) named MyFolder. It works well. Here is the probelm. Now when I try to display 'File_W' in my uialert, it shows as the below:
/Volumes/DATA/ABC/../MyFolder
When it should be:
/Volumes/DATA/MyFolder
Is there a way I can fix it?
Thanks.
  1 件のコメント
Leon
Leon 2020 年 2 月 15 日
Many thanks.

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

採用された回答

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2020 年 2 月 15 日
File_W = fullfile(app.Path, '..', 'MyFolder', [fileName, '_myFormat_.xlsx']);
writetable(T1, File_W);
a=dir(File_W);
namefolder=a(1).folder

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by