location of file created by fopen command
    5 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
hello everyone,
I am creating a file using using the below command
[fid,message] = fopen('test1.dump','w')
my fid is a positive value but I could not find where the file was created. How can I locate the file in MATLAB
Thanks
0 commentaires
Réponse acceptée
  Image Analyst
      
      
 le 3 Juil 2013
        It will be in the current folder - just look at the top of MATLAB and it will show it to you. It's not very robust programming to do that. It's far more robust to specify the folder so you know exactly where the file gets saved to, rather than just going into whatever the current folder happens to be.
folder = 'C:\Users\Public\Documents'; % or wherever.
baseFileName = 'test1.dump';
fullFileName = fullfile(folder, baseFileName);
[fileID, message] = fopen(fullFileName, 'w')
0 commentaires
Plus de réponses (1)
  Shashank Prasanna
    
 le 3 Juil 2013
        It will be in the current folder.
>> pwd
Also
>> which -all test1.dump
0 commentaires
Voir également
Catégories
				En savoir plus sur Startup and Shutdown 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!


