If I want to allocate a char array (in C) that is guaranteed to be large enough to hold any valid absolute path+filename, how big does it need to be.
On Win32, there is the MAX_PATH define. What is the equivalent for Unix/linux?
|
1
|
|
|
|
|
|
There is a PATH_MAX but it is a bit problematic. According to 'man realpath' description:
|
||
|
|
|
|
The other answers so far all seem right on point about the *nix side of things, but I'll add a warning about it on Windows. You've been lied to (by omission) by the documentation.
Add to the mix the fact that path names are actually Unicode (well, UTS-16) and that when the "ANSI" API is used the conversion to and from the internal Unicode name is dependent on a bunch of factors including the current code page, and you have a recipe for confusion. A good description of the rules for Windows is at MSDN. |
||
|
|
|
|
You can use |
||
|
|
|
|
Well, on Linux at least, there is:
both of these are set to Update: : Some info from the glibc manual on this
|
|||