■ FSO를 사용해 디렉토리 크기를 구하는 방법을 보여준다.
▶ FSO를 사용해 디렉토리 크기 구하기 예제 (C#)
1 2 3 4 5 6 7 |
using System; ulong directorySize = GetDirectorySize("c:\\temp"); Console.WriteLine("디렉토리 크기 : {0:n0} 바이트", directorySize); |
▶ FSO를 사용해 디렉토리 크기 구하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
using System; #region 디렉토리 크기 구하기 - GetDirectorySize(directoryPath) /// <summary> /// 디렉토리 크기 구하기 /// </summary> /// <param name="directoryPath">디렉토리 경로</param> /// <returns>디렉토리 크기</returns> public ulong GetDirectorySize(string directoryPath) { dynamic fso = Activator.CreateInstance(Type.GetTypeFromProgID("Scripting.FileSystemObject")); dynamic folder = fso.GetFolder(directoryPath); return (ulong)folder.size; } #endregion |