| | 1 | | using System.IO; |
| | 2 | |
|
| | 3 | | namespace MediaBrowser.Model.IO |
| | 4 | | { |
| | 5 | | /// <summary> |
| | 6 | | /// Helper class to create async <see cref="FileStream" />s. |
| | 7 | | /// </summary> |
| | 8 | | public static class AsyncFile |
| | 9 | | { |
| | 10 | | /// <summary> |
| | 11 | | /// Gets the default <see cref="FileStreamOptions"/> for reading files async. |
| | 12 | | /// </summary> |
| 0 | 13 | | public static FileStreamOptions ReadOptions => new FileStreamOptions() |
| 0 | 14 | | { |
| 0 | 15 | | Options = FileOptions.Asynchronous |
| 0 | 16 | | }; |
| | 17 | |
|
| | 18 | | /// <summary> |
| | 19 | | /// Gets the default <see cref="FileStreamOptions"/> for writing files async. |
| | 20 | | /// </summary> |
| 0 | 21 | | public static FileStreamOptions WriteOptions => new FileStreamOptions() |
| 0 | 22 | | { |
| 0 | 23 | | Mode = FileMode.OpenOrCreate, |
| 0 | 24 | | Access = FileAccess.Write, |
| 0 | 25 | | Share = FileShare.None, |
| 0 | 26 | | Options = FileOptions.Asynchronous |
| 0 | 27 | | }; |
| | 28 | |
|
| | 29 | | /// <summary> |
| | 30 | | /// Opens an existing file for reading. |
| | 31 | | /// </summary> |
| | 32 | | /// <param name="path">The file to be opened for reading.</param> |
| | 33 | | /// <returns>A read-only <see cref="FileStream" /> on the specified path.</returns> |
| | 34 | | public static FileStream OpenRead(string path) |
| 4 | 35 | | => new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read, IODefaults.FileStreamBufferSize, Fil |
| | 36 | |
|
| | 37 | | /// <summary> |
| | 38 | | /// Opens an existing file for writing. |
| | 39 | | /// </summary> |
| | 40 | | /// <param name="path">The file to be opened for writing.</param> |
| | 41 | | /// <returns>An unshared <see cref="FileStream" /> object on the specified path with Write access.</returns> |
| | 42 | | public static FileStream OpenWrite(string path) |
| 0 | 43 | | => new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write, FileShare.None, IODefaults.FileStreamBuffer |
| | 44 | | } |
| | 45 | | } |