Merge remote-tracking branch 'speedprog/banByIp'
[oweals/minetest.git] / src / filesys.h
1 /*
2 Minetest-c55
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 namespace fs
28 {
29
30 struct DirListNode
31 {
32         std::string name;
33         bool dir;
34 };
35
36 std::vector<DirListNode> GetDirListing(std::string path);
37
38 // Returns true if already exists
39 bool CreateDir(std::string path);
40
41 // Create all directories on the given path that don't already exist.
42 bool CreateAllDirs(std::string path);
43
44 bool PathExists(std::string path);
45
46 // Only pass full paths to this one. True on success.
47 // NOTE: The WIN32 version returns always true.
48 bool RecursiveDelete(std::string path);
49
50 // Only pass full paths to this one. True on success.
51 bool RecursiveDeleteContent(std::string path);
52
53 }//fs
54
55 #endif
56