]> git.lizzy.rs Git - minetest-m13.git/blob - src/filesys.h
b8bd0e5d8a515908e29f73fc3deb947005564a0f
[minetest-m13.git] / src / filesys.h
1 /*
2 Minetest-m13
3 Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
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 General Public License for more details.
14
15 You should have received a copy of the GNU 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.
18 */
19
20 #ifndef FILESYS_HEADER
21 #define FILESYS_HEADER
22
23 #include <string>
24 #include <vector>
25 #include "exceptions.h"
26
27 #ifdef _WIN32 // WINDOWS
28 #define DIR_DELIM "\\"
29 #define DIR_DELIM_C '\\'
30 #else // POSIX
31 #define DIR_DELIM "/"
32 #define DIR_DELIM_C '/'
33 #endif
34
35 namespace fs
36 {
37
38 struct DirListNode
39 {
40         std::string name;
41         bool dir;
42 };
43
44 std::vector<DirListNode> GetDirListing(std::string path);
45
46 // Returns true if already exists
47 bool CreateDir(std::string path);
48
49 // Create all directories on the given path that don't already exist.
50 bool CreateAllDirs(std::string path);
51
52 bool PathExists(std::string path);
53
54 // Only pass full paths to this one. True on success.
55 // NOTE: The WIN32 version returns always true.
56 bool RecursiveDelete(std::string path);
57
58 // Only pass full paths to this one. True on success.
59 bool RecursiveDeleteContent(std::string path);
60
61 }//fs
62
63 #endif
64