Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
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?

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Low-Level File I/O dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by