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
Image Analyst 2013년 5월 4일
편집: Image Analyst 2013년 5월 4일

0 개 추천

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에 대해 자세히 알아보기

질문:

2013년 5월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by