X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffs%2Futils.h;h=df7bc76b8d5add12bae4cb3daae6cf4027d3a3a1;hp=f345ba7e7f3266a2bba26c298821129ae49a8635;hb=eeb6ed7b20d56578ff8c68f3c94e887d5ac768ee;hpb=e1452710edb6b1d0ebceb4b9273dae4b2f899630 diff --git a/source/fs/utils.h b/source/fs/utils.h index f345ba7..df7bc76 100644 --- a/source/fs/utils.h +++ b/source/fs/utils.h @@ -12,22 +12,15 @@ std::string basename(const Path &); /// Removes the last component from the path. Path dirname(const Path &); -/** -Returns the base part of a filename. This includes everything up to the last -dot, but not the dot itself. -*/ +/** Returns the base part of a filename. This includes everything up to the +last dot, but not the dot itself. */ std::string basepart(const std::string &); -/** -Returns the extension part of a filename. This includes the last dot and -everything after it. -*/ +/** Returns the extension part of a filename. This includes the last dot and +everything after it. */ std::string extpart(const std::string &); -/** -Fixes the case of the given path to match files / directories on the -filesystem. -*/ +/// Fixes the case of a path to match files / directories on the filesystem. Path fix_case(const Path &path); /// Reads the contents of a symbolic link