Re: Any alternate to GetFullPathName() to work on Unix
On Feb 16, 2:13 pm, Sam <s...@email-scan.com> wrote:
saurabh writes:
Is there any POSIX function for GetFullPathName() API I
require to run a code using this on Unix.
Yes. realpath().
Before saying that, it would be interesting to know what
GetFullPathName() actually does. Does it `canonize'?
(realpath() does.) Does it resolve symbolic links. realpath()
does, and of course, Windows only has symbolic links since
Vista? (But what does GetFullPathName() do with short cuts?)
Note too that realpath() has a broken interface, which makes it
impossible to use in a correct program except in restricted
cases. At least, I was unable to find a way. Basically, it
requires that you provide a buffer of PATH_MAX bytes. but
PATH_MAX depends on the file system, and the file system depends
on the real path---you need the results of realpath() in order
to determine PATH_MAX. (I ended up re-impl=E9menting it myself,
so that it would work robustly.)
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34