■ Task 클래스의 FromException<T>/FromResult<T> 정적 메소드를 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
using System.IO; using System.Threading; using System.Threading.Tasks; #region 디렉토리 크기 구하기 (비동기) - GetDirectorySizeAsync(directoryPath) /// <summary> /// 디렉토리 크기 구하기 (비동기) /// </summary> /// <param name="directoryPath">디렉토리 경로</param> /// <returns>디렉토리 크기</returns> public Task<long> GetDirectorySizeAsync(string directoryPath) { if(!Directory.Exists(directoryPath)) { return Task.FromException<long>(new DirectoryNotFoundException("디렉토리가 없습니다.")); } else { string[] filePathArray = Directory.GetFiles(directoryPath, "*.*", SearchOption.AllDirectories); if(filePathArray.Length == 0) { return Task.FromResult(0L); } else { return Task.Run ( () => { long totalFileLength = 0; Parallel.ForEach ( filePathArray, (filePath) => { FileStream fileStream = new FileStream ( filePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, 256, true ); long fileLength = fileStream.Length; Interlocked.Add(ref totalFileLength, fileLength); fileStream.Close(); } ); return totalFileLength; } ); } } } #endregion |