* FileWriteable. Check if we can write to a file. * \param string. file name. * \return Bool value indicating write permissions. */
| 107 | * \return Bool value indicating write permissions. |
| 108 | */ |
| 109 | bool FileOps::FileWriteable |
| 110 | ( |
| 111 | const string &_fileName |
| 112 | ) |
| 113 | { |
| 114 | if( s_instance != NULL ) |
| 115 | { |
| 116 | return s_instance->m_pImpl->FileWriteable( _fileName ); |
| 117 | } |
| 118 | return false; |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * FileRotate. Rotate a File |