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

안녕하세요. 오늘은 파일이 선택된 상태로 파일 탐색기를 여는 방법에 대해 알아보도록 하겠습니다. 파일이 선택된 상태란, 아래의 상태를 얘기합니다. 정말정말 간단하니, 바로 코드로 알려드리도록 하겠습니다. string path = $@"{Path.Combine(Environment.CurrentDirectory, "aa.html")}"; string argument = string.Format("/e, /select, \"{0}\"", p); ProcessStartInfo info = new ProcessStartInfo(); info.FileName = "explorer"; info.Arguments = argument; Process.Start(info);
C#
2022. 3. 29. 00:57