How can I convert a relative path to an absolute path in C on Unix? Is there a convenient system function for this?
On Windows there is a GetFullPathName function that does the job, but I didn't find something similar on Unix...
|
1
|
How can I convert a relative path to an absolute path in C on Unix? Is there a convenient system function for this? On Windows there is a |
|||
|
|
|
|
Use realpath().
|
||
|