fopen inconsistency in compiled code
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (2)
Chirag Gupta
el 20 de Jul. de 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 comentario
Jan
el 20 de Jul. de 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
el 20 de Jul. de 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 comentarios
Ver también
Categorías
Más información sobre MATLAB Compiler en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!