Home | History | Annotate | Download | only in files

Lines Matching full:target_path

315     // the suffix after from_path to to_path to create the target_path.
316 FilePath target_path(to_path);
318 if (!from_path_base.AppendRelativePath(current, &target_path)) {
325 if (mkdir(target_path.value().c_str(),
330 << target_path.value() << " errno = " << errno;
334 if (!CopyFile(current, target_path)) {
336 << target_path.value();
402 bool CreateSymbolicLink(const FilePath& target_path,
405 DCHECK(!target_path.empty());
406 return ::symlink(target_path.value().c_str(),
410 bool ReadSymbolicLink(const FilePath& symlink_path, FilePath* target_path) {
412 DCHECK(target_path);
417 target_path->clear();
421 *target_path = FilePath(FilePath::StringType(buf, count));