GetFileTitle() public static method

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
return String
Exemplo n.º 1
0
 /// <summary>
 /// Return file title
 /// </summary>
 /// <returns>file title</returns>
 public String GetFileTitle()
 {
     return(FolderHelper.GetFileTitle(saveFileDialog.FileName));
 }