Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / util / file_system.hpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_UTIL_FILE_SYSTEM_HPP
18 #define HEADER_SUPERTUX_UTIL_FILE_SYSTEM_HPP
19
20 namespace FileSystem {
21
22 /**
23  * returns the path of the directory the file is in
24  */
25 std::string dirname(const std::string& filename);
26
27 /**
28  * returns the name of the file
29  */
30 std::string basename(const std::string& filename);
31
32 /**
33  * remove everything starting from and including the last dot
34  */
35 std::string strip_extension(const std::string& filename);
36
37 /**
38  * normalize filename so that "blup/bla/blo/../../bar" will become
39  * "blup/bar"
40  */
41 std::string normalize(const std::string& filename);
42
43 } // namespace FileSystem
44
45 #endif
46
47 /* EOF */