Finding directory containing executable for compiled application
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Aditya Desai
 el 10 de Ag. de 2015
  
    
    
    
    
    Comentada: Aditya Desai
 el 19 de Ag. de 2015
            I need to get the path of the executable for a compiled application. This answer appears to solve the problem for Windows, but does not work for Linux
I tried replacing 'path' with 'echo $PATH' but it still doesn't work as the folder where the executable is located is not on the path in Linux.
Is there any alternate solution?
0 comentarios
Respuesta aceptada
  Harsha Medikonda
    
 el 18 de Ag. de 2015
        Hi Aditya,
I understand that you are looking for a similar solution of finding the directory containing executable for a compiled application on Linux.
On Linux you can retrieve the directory containing the compiled executable using the following code
   [~,exeloc] = system(sprintf('readlink -f /proc/%d/exe',feature('getpid')));
Regards,
Harsha
Más respuestas (0)
Ver también
Categorías
				Más información sobre MATLAB Compiler en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!