GetFileTitle() 공개 정적인 메소드

Return the simple name of the file without extension
public static GetFileTitle ( String filePath ) : String
filePath String the full path of the file with file name
리턴 String
예제 #1
0
 /// <summary>
 /// Return file title
 /// </summary>
 /// <returns>file title</returns>
 public String GetFileTitle()
 {
     return(FolderHelper.GetFileTitle(saveFileDialog.FileName));
 }