fopen inconsistency in compiled code

5 次查看(过去 30 天)
Natarajan
Natarajan 2011-7-20
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 ?

回答(2 个)

Chirag Gupta
Chirag Gupta 2011-7-20
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 个评论
Jan
Jan 2011-7-20
+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
Walter Roberson 2011-7-20
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.
For a bit more information, see this discussion

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by