MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / FileCopy

Method FileCopy

cpp/src/platform/FileOps.cpp:144–156  ·  view source on GitHub ↗

* FileCopy. Copy a File * \param string. source file name. * \param string. destination file name * \return Bool value indicating success. */

Source from the content-addressed store, hash-verified

142 * \return Bool value indicating success.
143 */
144bool 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected