일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- File
- programmers
- Binding
- .net
- ListView
- logging
- windows10
- commit
- nullable
- Github
- 코딩테스트
- Process
- Visual Studio
- git
- coding-test
- convert
- IValueConverter
- algorithm
- string
- WPF
- chashtag
- Coding
- csharp
- log
- windows
- tls
- C#
- Microsoft
- dotNET
- mysql
Archives
- Today
- Total
목록Io (1)
CHashtag
[C#] 다른 프로세스가 파일 사용중인지 확인하기 (Check File Lock)
public bool CheckFileLocked(string filePath) { try { FileInfo file = new FileInfo(filePath); using (FileStream stream = file.Open(FileMode.Open, FileAccess.Read, FileShare.None)) { stream.Close(); } } catch (IOException) { return true; } return false; } 감사합니다.
C#
2021. 2. 8. 15:17