35 #ifndef LIBDCP_FILESYSTEM_H
36 #define LIBDCP_FILESYSTEM_H
39 #include <boost/filesystem.hpp>
47 boost::filesystem::path absolute(boost::filesystem::path
const& path);
48 boost::filesystem::path canonical(boost::filesystem::path
const& path);
49 boost::filesystem::path weakly_canonical(boost::filesystem::path
const& path);
50 boost::filesystem::path change_extension(boost::filesystem::path
const& from, std::string
const& new_extension);
51 void copy(boost::filesystem::path
const& from, boost::filesystem::path
const& to);
52 void copy_file(boost::filesystem::path
const& from, boost::filesystem::path
const& to);
53 void copy_file(boost::filesystem::path
const& from, boost::filesystem::path
const& to, boost::system::error_code& ec);
55 enum class CopyOptions
61 void copy_file(boost::filesystem::path
const& from, boost::filesystem::path
const& to, CopyOptions options);
62 bool create_directory(boost::filesystem::path
const& path);
63 bool create_directory(boost::filesystem::path
const& path, boost::system::error_code& ec);
64 bool create_directories(boost::filesystem::path
const& path);
65 bool create_directories(boost::filesystem::path
const& path, boost::system::error_code& ec);
66 void create_hard_link(boost::filesystem::path
const& from, boost::filesystem::path
const& to);
67 void create_hard_link(boost::filesystem::path
const& from, boost::filesystem::path
const& to, boost::system::error_code& ec);
68 void create_symlink(boost::filesystem::path
const& from, boost::filesystem::path
const& to, boost::system::error_code& ec);
69 void current_path(boost::filesystem::path
const& path);
70 boost::filesystem::path current_path();
71 bool exists(boost::filesystem::path
const& path);
72 bool exists(boost::filesystem::path
const& path, boost::system::error_code& ec);
73 std::string extension(boost::filesystem::path
const& path);
74 bool is_directory(boost::filesystem::path
const& path);
75 bool is_empty(boost::filesystem::path
const& path);
76 bool is_regular_file(boost::filesystem::path
const& path);
77 uintmax_t file_size(boost::filesystem::path
const& path);
78 uintmax_t file_size(boost::filesystem::path
const& path, boost::system::error_code& ec);
79 uintmax_t hard_link_count(boost::filesystem::path
const& path);
80 std::time_t last_write_time(boost::filesystem::path
const& path);
81 std::time_t last_write_time(boost::filesystem::path
const& path, boost::system::error_code& ec);
82 bool remove(boost::filesystem::path
const& path);
83 bool remove(boost::filesystem::path
const& path, boost::system::error_code& ec);
84 uintmax_t remove_all(boost::filesystem::path
const& path);
85 uintmax_t remove_all(boost::filesystem::path
const& path, boost::system::error_code& ec);
86 void rename(boost::filesystem::path
const& old_path, boost::filesystem::path
const& new_path);
87 void rename(boost::filesystem::path
const& old_path, boost::filesystem::path
const& new_path, boost::system::error_code& ec);
88 boost::filesystem::space_info space(boost::filesystem::path
const& path);
97 boost::filesystem::path path()
const;
98 operator boost::filesystem::path
const&()
const;
101 boost::filesystem::path _path;
110 directory_iterator(boost::filesystem::path
const& path, boost::system::error_code& ec);
118 boost::filesystem::directory_iterator _wrapped;
140 boost::filesystem::recursive_directory_iterator _wrapped;
149 boost::filesystem::path fix_long_path(boost::filesystem::path long_path);
150 boost::filesystem::path unfix_long_path(boost::filesystem::path long_path);
Namespace for everything in libdcp.