Changed to a move operation (rather than a copy).
This commit is contained in:
parent
244529c105
commit
6867a092bd
|
@ -261,7 +261,7 @@ namespace OpenLiveWriter.PostEditor
|
||||||
{
|
{
|
||||||
string fileName = Path.GetFileName(s);
|
string fileName = Path.GetFileName(s);
|
||||||
string destFile = Path.Combine(destinationFolder, fileName);
|
string destFile = Path.Combine(destinationFolder, fileName);
|
||||||
File.Copy(s, destFile, true);
|
File.Move(s, destFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue