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