Skip to content
Snippets Groups Projects
Commit ab91ab30 authored by Andy Cedilnik's avatar Andy Cedilnik
Browse files

ENH: When copy file, if the output file exits, delete it first

parent 1616cba9
No related branches found
No related tags found
No related merge requests found
......@@ -967,6 +967,11 @@ bool SystemTools::CopyFileAlways(const char* source, const char* destination)
return false;
}
if ( SystemTools::FileExists(destination) && !SystemTools::RemoveFile(destination) )
{
return false;
}
#if defined(_WIN32) || defined(__CYGWIN__)
kwsys_ios::ofstream fout(destination,
kwsys_ios::ios::binary | kwsys_ios::ios::out | kwsys_ios::ios::trunc);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment