* FileCopy. Copy a File * \param string. source file name. * \param string. destination file name * \return Bool value indicating success. */
| 142 | * \return Bool value indicating success. |
| 143 | */ |
| 144 | bool FileOps::FileCopy |
| 145 | ( |
| 146 | const string &_fileName, |
| 147 | const string &_destfileName |
| 148 | ) |
| 149 | { |
| 150 | |
| 151 | if( s_instance != NULL ) |
| 152 | { |
| 153 | return s_instance->m_pImpl->FileCopy( _fileName, _destfileName ); |
| 154 | } |
| 155 | return false; |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * FolderCreate. Create a Folder |
nothing calls this directly
no outgoing calls
no test coverage detected