Search for a file in a list of directories
#include <libgen.h> char *pathfind( const char *path, const char *name, const char *mode ); char *pathfind_r( const char *path, const char *name, const char *mode, char *buff, size_t buff_size );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The pathfind() function searches the directories named in path for the file name. The pathfind_r() function is a thread-safe version of pathfind().
Options read, write, and execute are checked relative to the real (not the effective) user ID and group ID of the current process.
If the file name, with all the characteristics specified by mode, is found in any of the directories specified by path, then these functions return a pointer to a string containing the member of path, followed by a slash character (/), followed by name.
An empty path member is treated as the current directory. If name is found in the current directory, a slash isn't prepended to it; the unadorned name is returned.
The pathfind_r() also includes a buffer, buff, and its size, buff_size. This buffer is used to hold the path of the file found.
The path found, or NULL if the file couldn't be found.
Find the ls command using the PATH environment variable:
pathfind (getenv ("PATH"), "ls", "rx");
Safety: | |
---|---|
Cancellation point | Yes |
Interrupt handler | No |
Signal handler | No |
Thread | No |
Safety: | |
---|---|
Cancellation point | Yes |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |
The string pointed to by the returned pointer is stored in an area that's reused on subsequent calls to pathfind(). Don't free this string.
Use pathfind_r() in multithreaded applications.
access(), getenv(), mknod(), stat()
sh in the Utilities Reference