filePath = saveFileDialog.FileName;
string FileName= filePath.Substring(filePath.LastIndexOf('\\') + 1);
// 파일경로에서 마지막 '\'의 Index를 구한 후 Index이후의 문자열 가져오면 순수 파일명
openFileDialog 사용시는 다음을 사용해도 됨
string FileName=openFileDialog.SafeFileName;
'Tip !!! > C# tip' 카테고리의 다른 글
사용자정의Control이 메인폼의 Control에 접근하기 (0) | 2022.07.27 |
---|---|
사용자Control에 속성 만들기 (0) | 2022.07.27 |
현재작업디렉토리 (0) | 2022.07.27 |
DataGridView 선택 Row Index 얻기 (0) | 2022.07.27 |
DataGridView에 Row Index 표시하기 (0) | 2022.07.27 |