summaryrefslogtreecommitdiffstats
path: root/depends/util/include/pathutils.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-10-30 00:56:43 +0100
committerPetr Mrázek <peterix@gmail.com>2013-10-30 00:56:43 +0100
commitf941119fbd89b5677a2895eee3232fa76389b4b5 (patch)
tree7d761d3c8189c06dda83e3fa88f281a24ab46e4b /depends/util/include/pathutils.h
parentc46292c9b1c153f2d17554690e90db1c8efe4d23 (diff)
parent44823324f9f489adf957a459bac5dd4d0693e85e (diff)
downloadMultiMC-f941119fbd89b5677a2895eee3232fa76389b4b5.tar
MultiMC-f941119fbd89b5677a2895eee3232fa76389b4b5.tar.gz
MultiMC-f941119fbd89b5677a2895eee3232fa76389b4b5.tar.lz
MultiMC-f941119fbd89b5677a2895eee3232fa76389b4b5.tar.xz
MultiMC-f941119fbd89b5677a2895eee3232fa76389b4b5.zip
Merge branch 'develop'
Diffstat (limited to 'depends/util/include/pathutils.h')
-rw-r--r--depends/util/include/pathutils.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/depends/util/include/pathutils.h b/depends/util/include/pathutils.h
index cea3a39a..c892c115 100644
--- a/depends/util/include/pathutils.h
+++ b/depends/util/include/pathutils.h
@@ -25,6 +25,16 @@ LIBUTIL_EXPORT QString PathCombine(QString path1, QString path2, QString path3);
LIBUTIL_EXPORT QString AbsolutePath(QString path);
+/**
+ * Normalize path
+ *
+ * Any paths inside the current directory will be normalized to relative paths (to current)
+ * Other paths will be made absolute
+ *
+ * Returns false if the path logic somehow filed (and normalizedPath in invalid)
+ */
+QString NormalizePath(QString path);
+
LIBUTIL_EXPORT QString RemoveInvalidFilenameChars(QString string, QChar replaceWith = '-');
LIBUTIL_EXPORT QString DirNameFromString(QString string, QString inDir = ".");