mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
daemon: 'pathExists' uses 'statx' when available.
* nix/libutil/util.cc (pathExists) [HAVE_STATX]: New code.
This commit is contained in:
parent
68ac34e120
commit
b6b014bf42
1 changed files with 5 additions and 0 deletions
|
@ -177,8 +177,13 @@ struct stat lstat(const Path & path)
|
|||
bool pathExists(const Path & path)
|
||||
{
|
||||
int res;
|
||||
#ifdef HAVE_STATX
|
||||
struct statx st;
|
||||
res = statx(AT_FDCWD, path.c_str(), AT_SYMLINK_NOFOLLOW, 0, &st);
|
||||
#else
|
||||
struct stat st;
|
||||
res = lstat(path.c_str(), &st);
|
||||
#endif
|
||||
if (!res) return true;
|
||||
if (errno != ENOENT && errno != ENOTDIR)
|
||||
throw SysError(format("getting status of %1%") % path);
|
||||
|
|
Loading…
Reference in a new issue