Changed to a move operation (rather than a copy).

This commit is contained in:
Mark Downie 2015-12-21 22:41:08 -05:00
parent 244529c105
commit 6867a092bd
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ namespace OpenLiveWriter.PostEditor
{
string fileName = Path.GetFileName(s);
string destFile = Path.Combine(destinationFolder, fileName);
File.Copy(s, destFile, true);
File.Move(s, destFile);
}
}