]> git.lyx.org Git - lyx.git/blobdiff - src/support/chdir.C
* support/qstring_helpers.h: erase ucs4_to_qstring() method.
[lyx.git] / src / support / chdir.C
index 0ce2df4942a7dea0dc02923bcdbf8cd7d9c6b077..e37d9cafbed4615bd0a208ca9f06c9d51243162c 100644 (file)
@@ -1,14 +1,38 @@
-#include <config.h>
+/**
+ * \file chdir.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
-#include <unistd.h>
+#include <config.h>
 
 #include "support/lyxlib.h"
 
-int lyx::chdir(char const * name)
+#include "support/filename.h"
+
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
+#ifdef _WIN32
+# include <windows.h>
+#endif
+
+
+namespace lyx {
+
+int support::chdir(FileName const & name)
 {
-#ifndef __EMX__
-       return ::chdir(name);
+#ifdef _WIN32
+       return SetCurrentDirectory(name.toFilesystemEncoding().c_str()) != 0 ? 0 : -1;
 #else
-       return ::_chdir2(name);
+       return ::chdir(name.toFilesystemEncoding().c_str());
 #endif
 }
+
+
+} // namespace lyx