12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- 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,
- }
- }
|