3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #ifndef FILESYS_HEADER
21 #define FILESYS_HEADER
25 #include "exceptions.h"
27 #ifdef _WIN32 // WINDOWS
28 #define DIR_DELIM "\\"
29 #define DIR_DELIM_C '\\'
32 #define DIR_DELIM_C '/'
43 std::vector<DirListNode> GetDirListing(std::string path);
45 // Returns true if already exists
46 bool CreateDir(std::string path);
48 bool PathExists(std::string path);
50 bool IsDir(std::string path);
52 // Only pass full paths to this one. True on success.
53 // NOTE: The WIN32 version returns always true.
54 bool RecursiveDelete(std::string path);
56 bool DeleteSingleFileOrEmptyDirectory(std::string path);
60 // The path itself not included
61 void GetRecursiveSubPaths(std::string path, std::vector<std::string> &dst);
63 // Tries to delete all, returns false if any failed
64 bool DeletePaths(const std::vector<std::string> &paths);
66 // Only pass full paths to this one. True on success.
67 bool RecursiveDeleteContent(std::string path);
69 // Create all directories on the given path that don't already exist.
70 bool CreateAllDirs(std::string path);