In Windows environment there is an API to obtain the path which is running a process. Is there something similar in Unix / Linux?
Or is there some other way to do that in these environments?
|
3
|
In Windows environment there is an API to obtain the path which is running a process. Is there something similar in Unix / Linux? Or is there some other way to do that in these environments?
|
|||
|
|
|
|
If you want the path of the current executable, look at |
||
|
|
|
In Linux every process has its own folder in /proc. So you could use getpid() to get the pid of the running process and then join it with the path '/proc' to get the folder you hopefully need. Here's a short example in Python:
Here's the example in ANSI C as well:
Compile it with:
|
|||
|
|
|
In unix/linux, you can use the ps command to get the path of each process:
I think this might be what you are looking for. |
||||
|
|
|
There's no "guaranteed to work anywhere" method. Step 1 is to check argv[0], if the program was started by its full path, this would (usually) have the full path. If it was started by a relative path, the same holds (though this requires getting teh current working directory, using getcwd(). Step 2, if none of the above holds, is to get the name of the program, then get the name of the program from argv[0], then get the user's PATH from the environment and go through that to see if there's a suitable executable binary with the same name. Note that argv[0] is set by the process that execs the program, so it is not 100% reliable. |
||
|
|
|
|
A little bit late, but all the answers were specific to linux. If you need also unix, then you need this:
|
||
|
|