//ファイル名の取得
this.Name = System.IO.Path.GetFileName(this.FullPath);
// ディレクトリ名の設定 (最後に'¥¥'は付かない)
this.DirPath = Path.GetDirectoryName(this.FullPath);
//ファイル名の設定(拡張子無し)
this.NameWithoutExt = Path.GetFileNameWithoutExtension(this.FullPath);
//拡張子の取得(1文字目は'.')
this.Ext = Path.GetExtension(this.FullPath);
コメント