Is there anyway to get the folder location where the executable is running ?

I want to create an executable which grabs files in the same directory where the executable is running and process it accordingly . I used in the code 'pwd' command to get the current folder location, but when the executable is created Matlab hardcodes the current folder location of my working directory and packages it .Thus i am not able to deploy my tool .

Respuestas (3)

Adam Filion
Adam Filion el 16 de Oct. de 2013
I wouldn't expect it to hardcode that path at compile time which could be a bug. You may want to contact tech support to confirm that.
Alternatively you could use dir to identify files, or if you want to make it interactive use uigetfile / uigetdir.
Image Analyst
Image Analyst el 16 de Oct. de 2013
Editada: Image Analyst el 16 de Oct. de 2013
I believe it's in the system variable called ctfroot.
root = ctfroot returns a string that is the name of the folder where the CTF file for the deployed application is expanded.

2 comentarios

I tried using this but it did'nt work. I also used
[status, wrkdir] = dos('echo %cd%'); cd wrkdir;
but that also creates a path in the executable .
Image Analyst
Image Analyst el 16 de Oct. de 2013
Editada: Image Analyst el 16 de Oct. de 2013
cd or pwd is not a reliable and robust way of getting the folder of the executable since the current folder may be changed by code within the executable. Then you might try mfilename('fullpath').

Iniciar sesión para comentar.

Categorías

Más información sobre MATLAB Compiler en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 16 de Oct. de 2013

Respondida:

el 21 de Oct. de 2024

Community Treasure Hunt

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

Start Hunting!

Translated by