using System;
using System.Collections.Generic;
using System.Text;
namespace Wayne.Lib.IO
{
///
/// Possible actions to take when cleaning up files that has been written by SafeFileWritingStream, and interrupted.
///
public enum SafeFileWritingCleanupAction
{
///
/// Just delete the file
///
Delete,
///
/// Delete the file, and store a copy in the Wayne restore temporary file folder.
///
StoreInRestoredTempFileDir,
}
}