gKit2 light
files.h
1 
2 #ifndef _FILES_H
3 #define _FILES_H
4 
5 #include <string>
6 
8 bool exists( const std::string& filename );
9 
11 size_t timestamp( const std::string& filename );
12 
19 std::string pathname( const std::string& filename );
20 
22 std::string normalize_filename( const std::string& filename );
23 
28 std::string relative_filename( const std::string& filename, const std::string& path );
29 
30 #endif
std::string pathname(const std::string &filename)
Definition: files.cpp:68