How to get the absolute path for a given relative path programmatically in Linux?
Incase of Windows we have the _fullpath() API. In other words, I mean what is analogous API to _fullpath of Windows in Linux?
|
How to get the absolute path for a given relative path programmatically in Linux? Incase of Windows we have the _fullpath() API. In other words, I mean what is analogous API to _fullpath of Windows in Linux? |
|||
|
|
|
As Paul mentioned, use |
|||||||||||||
|
|
|
|||
|
|
Check out the realpath function.
|
|||
|
|
|
There is the |
|||||
|
|
The is also another useful way, like "readlink -m $filename" First of all, it works without requirement for target file to exist. Secondly, it will handle symlinks and get really real path. |
|||
|
|
|
Running on RedHat 5.3, realpath doesn't exist but readlink is installed. You can use it on relative paths and symlinks, plus it will resolve symlinks recursively for you. It's thus a better option that realpath in my opinion readlink -f . |
|||
|
|