file クラス : FullName ゲッタ
説明
ファイルの絶対パスを取得します。
構文
fileInstance.FullName
引数
無し。
返り値
クラス | 説明 |
string | ファイルの絶対パス。 |
サンプルコード
1: | file f = new file("c:\somewhere..."); |
2: | string fullName = f.FullName; |
注意
これは、System.IO.FileInfo.FullName プロパティのラッパーです。
ファイルの絶対パスを取得します。
fileInstance.FullName
無し。
クラス | 説明 |
string | ファイルの絶対パス。 |
1: | file f = new file("c:\somewhere..."); |
2: | string fullName = f.FullName; |
これは、System.IO.FileInfo.FullName プロパティのラッパーです。