fopen inconsistency in compiled code
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi, When I create a file in my matlab code using fopen, such as f=fopen('abc.dat','w') it gets created in the current directory in the MATLAB environment. But when I compile the code, this file is not created in the current directory, but in some random directory. Have any of you faced a situation like this ? If so, what did you do to correct it ?
0 Kommentare
Antworten (2)
Chirag Gupta
am 20 Jul. 2011
The file will be created in the ctfroot/application (doc ctfroot) directory. This is because, when the compiled application runs, it starts up (in a matter of speaking) from the ctfroot directory and hence the behavior. If you want to open the file in the current folder use
fid = fopen(fullfile([pwd,filesep,'abc.dat'],'w');
1 Kommentar
Jan
am 20 Jul. 2011
+1: Using absolute fiule paths is more stable. I even would not rely on PWD (which is a wrapper to CD, btw) but use a well defined path.
Walter Roberson
am 20 Jul. 2011
This is expected behavior for any operating system in which you launch executables by clicking on them. In windowed systems, the window system does not know what directory you are "in" (especially since you might have different windows open with different directories). windowed systems generally set the executable's current directory to the directory the executable was found in.
The directory that was used to unpack into can be examined via the ctfroot function.
0 Kommentare
Siehe auch
Kategorien
Mehr zu MATLAB Compiler finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!