Exit standalone created application automatically
显示 更早的评论
Hello,
I have created a standalone executable file using MATLAB based on a single script file. When I run the executable file from the command window, the outputs are displayed. But I need to press the ENTER key for the command window to display the current path. How to automatically exit the run and display the path in the command window?
回答(1 个)
Image Analyst
2013-5-4
编辑:Image Analyst
2013-5-4
You can put
pwd
into your code whenever you want it to print out the current folder to the console window. Or you can fancy it up with fprintf():
fprintf('The current working directory is:\n%s', pwd);
cd() will also return the current folder, as well as let you change directory to a new folder.
If you want the search path (a bunch of folders), then you can put path instead of pwd:
path
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB Compiler 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!