GME  13
FileHelp.h
Go to the documentation of this file.
00001 #pragma once
00002 
00003 class FileHelp
00004 {
00005 public:
00006         static bool isFileReadOnly   ( const std::string& p_file);
00007         static bool isFileReadOnly2  ( const std::string& p_file, bool * p_ptrExists);
00008         static bool isFileReadWrite  ( const std::string& p_file);
00009         static bool isFile           ( const std::string& p_dirOrFile);
00010         static bool isDir            ( const std::string& p_dir);
00011         static bool fileExist        ( const std::string& p_file);
00012 };
00013