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