Home | History | Annotate | Download | only in atree

Lines Matching refs:c_str

25     err = stat(path.c_str(), &st);
32 int err = unlink(path.c_str());
34 fprintf(stderr, "error deleting file %s (%s)\n", path.c_str(),
47 DIR *d = opendir(path.c_str());
50 path.c_str(), strerror(errno));
71 stat(full.c_str(), &stat_buf);
96 err = rmdir(path.c_str());
98 fprintf(stderr, "error deleting directory %s (%s)\n", path.c_str(),
121 err = stat(p.c_str(), &st);
123 err = mkdir(p.c_str(), 0770);
126 path.c_str(), strerror(errno));
132 path.c_str(), p.c_str());
147 err = copyFile(src.c_str(), dst.c_str(),
166 return execlp(strip_cmd, strip_cmd, path.c_str(), (char *)NULL);