* FileRotate. Rotate a File * \param string. file name. * \return Bool value indicating write permissions. */
| 124 | * \return Bool value indicating write permissions. |
| 125 | */ |
| 126 | bool FileOps::FileRotate |
| 127 | ( |
| 128 | const string &_fileName |
| 129 | ) |
| 130 | { |
| 131 | if( s_instance != NULL ) |
| 132 | { |
| 133 | return s_instance->m_pImpl->FileRotate( _fileName ); |
| 134 | } |
| 135 | return false; |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * FileCopy. Copy a File |