일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mysql
- IValueConverter
- nullable
- .net
- WPF
- log
- Process
- chashtag
- convert
- windows10
- File
- commit
- C#
- csharp
- Github
- windows
- logging
- dotNET
- tls
- string
- 코딩테스트
- programmers
- Microsoft
- coding-test
- Coding
- algorithm
- Visual Studio
- ListView
- Binding
- git
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 |