Fixed image sequence output

This commit is contained in:
N00MKRAD
2020-12-02 15:34:59 +01:00
parent 2c061317d3
commit bd408f3423
7 changed files with 37 additions and 12 deletions

View File

@@ -114,13 +114,9 @@ namespace Flowframes.IO
foreach (FileInfo fileInfo in files)
{
if (move)
{
fileInfo.MoveTo(Path.Combine(target.FullName, fileInfo.Name));
}
else
{
fileInfo.CopyTo(Path.Combine(target.FullName, fileInfo.Name), overwrite: true);
}
}
}