35 #include "filesystem.h"
36 #include <boost/algorithm/string.hpp>
40 dcp::filesystem::exists(boost::filesystem::path
const& path)
42 return boost::filesystem::exists(dcp::filesystem::fix_long_path(path));
47 dcp::filesystem::exists(boost::filesystem::path
const& path, boost::system::error_code& ec)
49 return boost::filesystem::exists(dcp::filesystem::fix_long_path(path), ec);
54 dcp::filesystem::is_directory(boost::filesystem::path
const& path)
56 return boost::filesystem::is_directory(dcp::filesystem::fix_long_path(path));
61 dcp::filesystem::is_empty(boost::filesystem::path
const& path)
63 return boost::filesystem::is_empty(dcp::filesystem::fix_long_path(path));
68 dcp::filesystem::is_regular_file(boost::filesystem::path
const& path)
70 return boost::filesystem::is_regular_file(dcp::filesystem::fix_long_path(path));
75 dcp::filesystem::create_directory(boost::filesystem::path
const& path)
77 return boost::filesystem::create_directory(dcp::filesystem::fix_long_path(path));
82 dcp::filesystem::create_directory(boost::filesystem::path
const& path, boost::system::error_code& ec)
84 return boost::filesystem::create_directory(dcp::filesystem::fix_long_path(path), ec);
89 dcp::filesystem::copy(boost::filesystem::path
const& from, boost::filesystem::path
const& to)
91 boost::filesystem::copy(dcp::filesystem::fix_long_path(from), dcp::filesystem::fix_long_path(to));
96 dcp::filesystem::copy_file(boost::filesystem::path
const& from, boost::filesystem::path
const& to)
98 boost::filesystem::copy_file(dcp::filesystem::fix_long_path(from), dcp::filesystem::fix_long_path(to));
103 dcp::filesystem::copy_file(boost::filesystem::path
const& from, boost::filesystem::path
const& to, boost::system::error_code& ec)
105 boost::filesystem::copy_file(dcp::filesystem::fix_long_path(from), dcp::filesystem::fix_long_path(to), ec);
110 dcp::filesystem::copy_file(boost::filesystem::path
const& from, boost::filesystem::path
const& to, CopyOptions option)
112 #ifdef LIBDCP_HAVE_COPY_OPTIONS
113 auto const options = option == CopyOptions::OVERWRITE_EXISTING ? boost::filesystem::copy_options::overwrite_existing : boost::filesystem::copy_options::none;
115 auto const options = option == CopyOptions::OVERWRITE_EXISTING ? boost::filesystem::copy_option::overwrite_if_exists : boost::filesystem::copy_option::none;
118 boost::filesystem::copy_file(dcp::filesystem::fix_long_path(from), dcp::filesystem::fix_long_path(to), options);
123 dcp::filesystem::create_directories(boost::filesystem::path
const& path)
125 return boost::filesystem::create_directories(dcp::filesystem::fix_long_path(path));
130 dcp::filesystem::create_directories(boost::filesystem::path
const& path, boost::system::error_code& ec)
132 return boost::filesystem::create_directories(dcp::filesystem::fix_long_path(path), ec);
136 boost::filesystem::path
137 dcp::filesystem::absolute(boost::filesystem::path
const& path)
139 return dcp::filesystem::unfix_long_path(boost::filesystem::absolute(dcp::filesystem::fix_long_path(path)));
143 boost::filesystem::path
144 dcp::filesystem::canonical(boost::filesystem::path
const& path)
146 return dcp::filesystem::unfix_long_path(boost::filesystem::canonical(dcp::filesystem::fix_long_path(path)));
150 boost::filesystem::path
151 dcp::filesystem::weakly_canonical(boost::filesystem::path
const& path)
153 #ifdef DCPOMATIC_HAVE_WEAKLY_CANONICAL
154 return dcp::filesystem::unfix_long_path(boost::filesystem::weakly_canonical(dcp::filesystem::fix_long_path(path)));
156 boost::filesystem::path complete(boost::filesystem::system_complete(dcp::filesystem::fix_long_path(path)));
157 boost::filesystem::path result;
158 for (
auto part: complete) {
160 boost::system::error_code ec;
161 if (boost::filesystem::is_symlink(result, ec) || result.filename() ==
"..") {
164 result = result.parent_path();
166 }
else if (part !=
".") {
171 return dcp::filesystem::unfix_long_path(result.make_preferred());
177 dcp::filesystem::remove(boost::filesystem::path
const& path)
179 return boost::filesystem::remove(dcp::filesystem::fix_long_path(path));
184 dcp::filesystem::remove(boost::filesystem::path
const& path, boost::system::error_code& ec)
186 return boost::filesystem::remove(dcp::filesystem::fix_long_path(path), ec);
191 dcp::filesystem::remove_all(boost::filesystem::path
const& path)
193 return boost::filesystem::remove_all(dcp::filesystem::fix_long_path(path));
198 dcp::filesystem::remove_all(boost::filesystem::path
const& path, boost::system::error_code& ec)
200 return boost::filesystem::remove_all(dcp::filesystem::fix_long_path(path), ec);
205 dcp::filesystem::file_size(boost::filesystem::path
const& path)
207 return boost::filesystem::file_size(dcp::filesystem::fix_long_path(path));
212 dcp::filesystem::file_size(boost::filesystem::path
const& path, boost::system::error_code& ec)
214 return boost::filesystem::file_size(dcp::filesystem::fix_long_path(path), ec);
218 boost::filesystem::path
219 dcp::filesystem::current_path()
221 return dcp::filesystem::unfix_long_path(boost::filesystem::current_path());
226 dcp::filesystem::current_path(boost::filesystem::path
const& path)
228 boost::filesystem::current_path(dcp::filesystem::fix_long_path(path));
233 dcp::filesystem::create_hard_link(boost::filesystem::path
const& from, boost::filesystem::path
const& to)
235 boost::filesystem::create_hard_link(dcp::filesystem::fix_long_path(from), dcp::filesystem::fix_long_path(to));
240 dcp::filesystem::create_hard_link(boost::filesystem::path
const& from, boost::filesystem::path
const& to, boost::system::error_code& ec)
242 boost::filesystem::create_hard_link(dcp::filesystem::fix_long_path(from), dcp::filesystem::fix_long_path(to), ec);
247 dcp::filesystem::create_symlink(boost::filesystem::path
const& from, boost::filesystem::path
const& to, boost::system::error_code& ec)
249 boost::filesystem::create_symlink(dcp::filesystem::fix_long_path(from), dcp::filesystem::fix_long_path(to), ec);
254 dcp::filesystem::extension(boost::filesystem::path
const& path)
256 return dcp::filesystem::fix_long_path(path).extension().string();
260 boost::filesystem::space_info
261 dcp::filesystem::space(boost::filesystem::path
const& path)
263 return boost::filesystem::space(dcp::filesystem::fix_long_path(path));
268 dcp::filesystem::last_write_time(boost::filesystem::path
const& path)
270 return boost::filesystem::last_write_time(dcp::filesystem::fix_long_path(path));
275 dcp::filesystem::last_write_time(boost::filesystem::path
const& path, boost::system::error_code& ec)
277 return boost::filesystem::last_write_time(dcp::filesystem::fix_long_path(path), ec);
282 dcp::filesystem::hard_link_count(boost::filesystem::path
const& path)
284 return boost::filesystem::hard_link_count(dcp::filesystem::fix_long_path(path));
289 dcp::filesystem::rename(boost::filesystem::path
const& old_path, boost::filesystem::path
const& new_path)
291 boost::filesystem::rename(dcp::filesystem::fix_long_path(old_path), dcp::filesystem::fix_long_path(new_path));
296 dcp::filesystem::rename(boost::filesystem::path
const& old_path, boost::filesystem::path
const& new_path, boost::system::error_code& ec)
298 boost::filesystem::rename(dcp::filesystem::fix_long_path(old_path), dcp::filesystem::fix_long_path(new_path), ec);
303 boost::filesystem::path
304 dcp::filesystem::change_extension(boost::filesystem::path
const& path, std::string
const& new_extension)
306 #ifdef LIBDCP_HAVE_REPLACE_EXTENSION
308 copy.replace_extension(new_extension);
311 return boost::filesystem::change_extension(path, new_extension);
316 #ifdef DCPOMATIC_WINDOWS
318 dcp::filesystem::directory_iterator::directory_iterator(boost::filesystem::path
const& path)
319 : _wrapped(
dcp::filesystem::fix_long_path(path))
325 dcp::filesystem::directory_iterator::directory_iterator(boost::filesystem::path
const& path, boost::system::error_code& ec)
326 : _wrapped(
dcp::filesystem::fix_long_path(path), ec)
332 boost::filesystem::path
333 dcp::filesystem::directory_entry::path()
const
335 return dcp::filesystem::unfix_long_path(_path);
339 dcp::filesystem::directory_entry::operator boost::filesystem::path
const &()
const
341 return dcp::filesystem::unfix_long_path(_path);
345 dcp::filesystem::recursive_directory_iterator::recursive_directory_iterator(boost::filesystem::path
const& path)
346 : _wrapped(
dcp::filesystem::fix_long_path(path))
353 dcp::filesystem::directory_iterator::directory_iterator(boost::filesystem::path
const& path)
360 dcp::filesystem::directory_iterator::directory_iterator(boost::filesystem::path
const& path, boost::system::error_code& ec)
367 boost::filesystem::path
368 dcp::filesystem::directory_entry::path()
const
374 dcp::filesystem::directory_entry::operator boost::filesystem::path
const &()
const
380 dcp::filesystem::recursive_directory_iterator::recursive_directory_iterator(boost::filesystem::path
const& path)
389 dcp::filesystem::directory_entry::directory_entry(boost::filesystem::path
const& path)
397 dcp::filesystem::directory_iterator::operator++()
405 dcp::filesystem::directory_iterator::operator*()
const
413 dcp::filesystem::directory_iterator::operator->()
const
422 return _wrapped != other._wrapped;
441 dcp::filesystem::recursive_directory_iterator::operator++()
451 return _wrapped != other._wrapped;
456 dcp::filesystem::recursive_directory_iterator::operator*()
const
464 dcp::filesystem::recursive_directory_iterator::operator->()
const
499 boost::filesystem::path
500 dcp::filesystem::fix_long_path(boost::filesystem::path long_path)
502 #ifdef LIBDCP_WINDOWS
503 using namespace boost::filesystem;
505 if (boost::algorithm::starts_with(long_path.string(),
"\\\\")) {
515 path fixed =
"\\\\?\\";
516 if (long_path.is_absolute()) {
517 fixed += long_path.make_preferred();
519 fixed += filesystem::current_path() / long_path.make_preferred();
528 boost::filesystem::path
529 dcp::filesystem::unfix_long_path(boost::filesystem::path long_path)
531 #ifdef LIBDCP_WINDOWS
532 if (boost::algorithm::starts_with(long_path.string(),
"\\\\?\\")) {
533 return long_path.string().substr(4);
Namespace for everything in libdcp.