mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
599 B
28 lines
599 B
#include "func_getattr_ff.hpp"
|
|
|
|
#include "fs_lstat.hpp"
|
|
|
|
int
|
|
Func2::GetattrFF::process(const Branches &branches_,
|
|
const fs::Path &fusepath_,
|
|
struct stat *st_,
|
|
fuse_timeouts_t *timeout_)
|
|
{
|
|
int rv;
|
|
Branches::CPtr branches;
|
|
fs::Path fullpath;
|
|
|
|
branches = branches_;
|
|
|
|
for(const auto &branch : *branches)
|
|
{
|
|
fullpath = branch.path;
|
|
fullpath /= fusepath_;
|
|
rv = fs::lstat(fullpath.c_str(),st_);
|
|
printf("%s %d\n",fullpath,rv);
|
|
if(rv == 0)
|
|
return 0;
|
|
}
|
|
|
|
return 0;
|
|
}
|