Lines Matching refs:copy_options
104 void __copy(const path& from, const path& to, copy_options options, error_code* ec) { in __copy()
107 …const bool sym_status = bool(options & (copy_options::create_symlinks | copy_options::skip_symlink… in __copy()
109 const bool sym_status2 = bool(options & copy_options::copy_symlinks); in __copy()
130 if (bool(copy_options::skip_symlinks & options)) { in __copy()
139 if (bool(copy_options::directories_only & options)) { in __copy()
141 } else if (bool(copy_options::create_symlinks & options)) { in __copy()
143 } else if (bool(copy_options::create_hard_links & options)) { in __copy()
151 } else if (is_directory(f) && bool(copy_options::create_symlinks & options)) { in __copy()
153 …} else if (is_directory(f) && (bool(copy_options::recursive & options) || copy_options::none == op… in __copy()
167 … __copy(it->path(), to / it->path().filename(), options | copy_options::__in_recursive_copy, ec); in __copy()
259 bool __copy_file(const path& from, const path& to, copy_options options, error_code* ec) { in __copy_file()
276 const bool skip_existing = bool(copy_options::skip_existing & options); in __copy_file()
277 const bool update_existing = bool(copy_options::update_existing & options); in __copy_file()
278 const bool overwrite_existing = bool(copy_options::overwrite_existing & options); in __copy_file()