summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/sfdb_freesound_mootcher.cc12
1 files changed, 7 insertions, 5 deletions
diff --git a/gtk2_ardour/sfdb_freesound_mootcher.cc b/gtk2_ardour/sfdb_freesound_mootcher.cc
index 70d04abb66..b0a4d90339 100644
--- a/gtk2_ardour/sfdb_freesound_mootcher.cc
+++ b/gtk2_ardour/sfdb_freesound_mootcher.cc
@@ -41,7 +41,7 @@
#include "sfdb_freesound_mootcher.h"
#include "pbd/xml++.h"
-#include "pbd/filesystem.h"
+#include "pbd/error.h"
#include <sys/stat.h>
#include <sys/types.h>
@@ -91,10 +91,12 @@ void Mootcher::changeWorkingDir(const char *saveLocation)
void Mootcher::ensureWorkingDir ()
{
- PBD::sys::path p = basePath;
- p /= "snd";
- if (!PBD::sys::is_directory (p)) {
- PBD::sys::create_directories (p);
+ std::string p = Glib::build_filename (basePath, "snd");
+
+ if (!Glib::file_test (p, Glib::FILE_TEST_IS_DIR)) {
+ if (g_mkdir_with_parents (p.c_str(), 0775) != 0) {
+ PBD::error << "Unable to create Mootcher working dir" << endmsg;
+ }
}
}