일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Coding
- tls
- coding-test
- ListView
- Microsoft
- IValueConverter
- WPF
- C#
- string
- windows
- Visual Studio
- commit
- Process
- chashtag
- mysql
- algorithm
- dotNET
- git
- 코딩테스트
- Binding
- windows10
- csharp
- Github
- nullable
- File
- .net
- log
- logging
- convert
- programmers
Archives
- Today
- Total
CHashtag
[C#] 폴더 크기 구하기 (Get Directory Size) 본문
반응형
폴더 내부의 모든 파일의 크기를 구하는 함수입니다.
단위는 byte입니다.
public long GetDirectorySize(string path)
{
long size = 0;
DirectoryInfo dirInfo = new DirectoryInfo(path);
foreach (FileInfo fi in dirInfo.GetFiles("*", SearchOption.AllDirectories))
{
size += fi.Length;
}
return size;
}
반응형
'C#' 카테고리의 다른 글
Visual Studio에서 솔루션 내 프로젝트 동시 실행(debug multiple project) (0) | 2021.11.13 |
---|---|
[C#] 압축, 압축 풀기 with 비밀번호 (zip, unzip with password) (0) | 2021.09.29 |
[C#] Mutex 생성, 해제하기 (중복실행방지) (Lock) (0) | 2021.06.30 |
[C#] CallerMemberName Attribute 사용법 (0) | 2021.06.30 |
[C#] [매크로] Low Level 키보드 입력 (Simulation) (2) | 2021.06.30 |