How to create new file in another folder?

52 ビュー (過去 30 日間)
Naga
Naga 2019 年 8 月 20 日
コメント済み: Eldhose Poulose 2020 年 3 月 6 日
I have got 2 files namely DCM file and text file.I have to compare the parameters in text file and Dcm file and if those parameters presented, then I have to copy the parameters from DCM file to another new file. I have already written the code in such a way it will do this. But I have create the new file in another folder . How can I do this?
  3 件のコメント
Naga
Naga 2019 年 8 月 20 日
Thank you. It's creating the new file. But it is not able to read this file when I gave its path to another function. Is there any command for that?
Joel Handy
Joel Handy 2019 年 8 月 20 日
There are lots of commands for that. Can you be more specific when you say the other function can't read the file? Do you get an error? Do you get unexpected results? What code have you tried so far?

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

採用された回答

Stephen23
Stephen23 2019 年 8 月 20 日
編集済み: Stephen23 2019 年 8 月 20 日
" But I have create the new file in another folder . How can I do this?"
All MATLAB functions that read/write to data files accept absolute/relative filenames, so you just need to add a relative/absolute path to the filename. You can easily create the complete filename using fullfile.
D = 'C:\somedir\subdir';
N = 'myfile.txt';
fid = fopen(fullfile(D,N),'wt');
...
fclose(fid)
  1 件のコメント
Eldhose Poulose
Eldhose Poulose 2020 年 3 月 6 日
the fullfile() function is useful when you write several files inside a for loop ,for instance. THANK YOU Stephan

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by