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
2013-1-22
fid = fopen('C:\folder1\rio.txt', 'w');
fprintf(fid, '%s', '0123456789');
fclose(fid)
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!