How can my program discover the complete pathname to the executable from which it was invoked?

Q

How can my program discover the complete pathname to the executable from which it was invoked?

✍: Guest

A

argv[0] may contain all or part of the pathname, or it may contain nothing. You may be able to duplicate the command language interpreter's search path logic to locate the executable if the name in argv[0] is present but incomplete. However, there is no guaranteed solution.

2015-03-13, 1145👍, 0💬