2008-07-16 20:50:16 +00:00
|
|
|
#ifndef _FILEUTIL_H
|
|
|
|
#define _FILEUTIL_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class File
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static bool Exists(const std::string &filename);
|
2008-07-20 12:26:32 +00:00
|
|
|
static void Launch(const std::string &filename);
|
|
|
|
static void Explore(const std::string &path);
|
2008-07-20 15:12:12 +00:00
|
|
|
static bool IsDirectory(const std::string &filename);
|
2008-07-20 21:20:22 +00:00
|
|
|
static bool CreateDir(const std::string &filename);
|
2008-07-16 20:50:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|