summaryrefslogtreecommitdiff
path: root/src/lib/find_missing.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-10-06 02:37:16 +0200
committerCarl Hetherington <cth@carlh.net>2023-10-09 23:38:28 +0200
commit96f50dd5e600925488fdd9db1580aa01b026269b (patch)
treeea8b837a596eb99a7416bfdbfd2d7e4f38603a7b /src/lib/find_missing.cc
parent94a9473993b027b9368077009decbdd4322f90e3 (diff)
Use dcp::filesystem to wrap filesystem calls and fix_long_path
anything that is passed to read_file() from libcxml. This should fix #2623 and other similar problems.
Diffstat (limited to 'src/lib/find_missing.cc')
-rw-r--r--src/lib/find_missing.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/find_missing.cc b/src/lib/find_missing.cc
index 2234637b3..199ffcc19 100644
--- a/src/lib/find_missing.cc
+++ b/src/lib/find_missing.cc
@@ -22,7 +22,7 @@
#include "content.h"
#include "find_missing.h"
#include "util.h"
-#include <boost/filesystem.hpp>
+#include <dcp/filesystem.h>
using std::map;
@@ -38,16 +38,16 @@ void
search (Replacements& replacement_paths, boost::filesystem::path directory, int depth = 0)
{
boost::system::error_code ec;
- for (auto candidate: boost::filesystem::directory_iterator(directory, ec)) {
- if (boost::filesystem::is_regular_file(candidate.path())) {
+ for (auto candidate: dcp::filesystem::directory_iterator(directory, ec)) {
+ if (dcp::filesystem::is_regular_file(candidate.path())) {
for (auto& replacement: replacement_paths) {
for (auto& path: replacement.second) {
- if (!boost::filesystem::exists(path) && path.filename() == candidate.path().filename()) {
+ if (!dcp::filesystem::exists(path) && path.filename() == candidate.path().filename()) {
path = candidate.path();
}
}
}
- } else if (boost::filesystem::is_directory(candidate.path()) && depth <= 2) {
+ } else if (dcp::filesystem::is_directory(candidate.path()) && depth <= 2) {
search (replacement_paths, candidate, depth + 1);
}
}