Is There an Equivalent to Winapi's Max_Path Under Linux/Unix

Is there an equivalent to WinAPI's MAX_PATH under linux/unix?

There is a PATH_MAX, but it is a bit problematic. From the bugs section of the realpath(3) man page:

The POSIX.1-2001 standard version of this function is broken by
design, since it is impossible to determine a suitable size for the
output buffer, resolved_path. According to POSIX.1-2001 a buffer of
size PATH_MAX suffices, but PATH_MAX need not be a defined
constant, and may have to be obtained using pathconf(3). And
asking pathconf(3) does not really help, since, on the one hand
POSIX warns that the result of pathconf(3) may be huge and
unsuitable for mallocing memory, and on the other hand
pathconf(3) may return -1 to signify that PATH_MAXis not
bounded.

Where is PATH_MAX defined in Linux?

Its in linux/limits.h.

#define PATH_MAX 4096 /* # chars in a path name including nul */

#include <linux/limits.h>

char current_path[PATH_MAX];

PATH_MAX has some flaws as mentioned in this blog (thanks paulsm4)

In Linux / Unix, is there a way to list every group ownership that appears under a specific folder path?

Assuming GNU find:

find /path/to/MyFolder -printf "%g\n" | sort | uniq -c

will show all distinct groups owning files in the directory tree, and how many files each group owns.

_splitpath in Linux

dirname() and basename()



Related Topics



Leave a reply



Submit