----------------------------------------------------------------------------- Static method to check for existance of a folder -----------------------------------------------------------------------------
| 73 | // Static method to check for existance of a folder |
| 74 | //----------------------------------------------------------------------------- |
| 75 | bool FileOps::FolderExists |
| 76 | ( |
| 77 | const string &_folderName |
| 78 | ) |
| 79 | { |
| 80 | if( s_instance != NULL ) |
| 81 | { |
| 82 | return s_instance->m_pImpl->FolderExists( _folderName ); |
| 83 | } |
| 84 | return false; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * FileExists. Check for the existance of a file. |