How can I write and save *.txt file by the *.m file in the specific path like C:\folder1\rio.txt

1 回表示 (過去 30 日間)
I wanna save *.txt file in specific location like C:\folder1\rio.txt that does not exit and I want to creat root its by m-file. I write below lines but it didn't work ---------- addpath('C:\folder1'); fid = fopen('rio.txt','w'); fprintf('0123456789'); fclose(fid)
and beside I have to read the *.txt file again to verify that it saved correctly. *.txt just save in current directory that I already wirte my *.m file,is someone can help me?

採用された回答

Thorsten
Thorsten 2013 年 1 月 22 日
fid = fopen('C:\folder1\rio.txt', 'w');
fprintf(fid, '%s', '0123456789');
fclose(fid)

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by