728x90
반응형
1. USING 작성
using System.IO;
2. 소스 작성
private void button1_Click(object sender, EventArgs e)
{
//File 경로
string fullpath = textBox1.Text;
string filepath = Path.GetDirectoryName(fullpath).ToLower();
string filename = Path.GetFileNameWithoutExtension(fullpath);
string fileextension = Path.GetExtension(fullpath);
richTextBox1.AppendText("경로+파일 : "+ fullpath + "\n");
richTextBox1.AppendText("경로 : " + filepath + "\n");
richTextBox1.AppendText("이름 : " + filename + "\n");
richTextBox1.AppendText("형식 : " + fileextension + "\n");
}
3. 결과 확인
728x90
반응형
'c# > 기타' 카테고리의 다른 글
[c#] 숫자를 엑셀 열 알파벳으로 변환 (0) | 2021.12.16 |
---|---|
[c#] Excel 읽기, 쓰기 (0) | 2021.12.16 |
[C#] enum (0) | 2021.12.06 |
[C#] String vs StringBuilder (0) | 2021.12.06 |
[C#] String CONCAT, JOINT (0) | 2021.12.06 |