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?
|
feedback
|
|
There is a PATH_MAX but it is a bit problematic. According to 'man realpath' description:
| |||
|
feedback
|
|
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. The rules are much more complicated than I've summarized here. Edit: I changed Windows paths and namespaces are complicated. Some might even argue they are too complicated. One source of complexity is that the Win32 (and now Win64) API is a subsystem that lays on top of the Windows NT native system. A path without any prefix is compatible across the widest range of Windows platforms. If it is restricted to 7-bit ASCII characters, then it is compatible with 16-bit DOS since version 2.0 or so (whenever subdirectories were introduced, which might actually have been in DOS 3; but DOS 1.0 only had root directories and the The The The MSDN page I cited above had the distinction right, I simply typed the incorrect prefix in my original answer. | |||||
feedback
|
|
Well, on Linux at least, there is:
both of these are set to Update: : Some info from the glibc manual on this
| |||||||
feedback
|
|
You can use | |||
|
feedback
|
|
FILENAME_MAX is part of the ISO C standard, it works on UNIX and Windows. However, the GNU C library documentation contains the following warnings: "Unlike PATH_MAX, this macro is defined even if there is no actual limit imposed. In such a case, its value is typically a very large number. This is always the case on the GNU system. Usage Note: Don't use FILENAME_MAX as the size of an array in which to store a file name! You can't possibly make an array that big! Use dynamic allocation." | |||
|
feedback
|