Exit standalone created application automatically

3 visualizzazioni (ultimi 30 giorni)
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?

Risposte (1)

Image Analyst
Image Analyst il 4 Mag 2013
Modificato: Image Analyst il 4 Mag 2013
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

Categorie

Scopri di più su Environment and Settings in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by