[Tips][パス操作] パス文字列からルートディレクトリを取得する

スポンサーリンク

パス文字列からルートディレクトリ(例 C:\)を表す文字列を取得するには、PathクラスGetPathRootメソッドを使用します。

下記はパス文字列からルートディレクトリを表す文字列を取得する例です。

VBの例

Dim filepath As String = "C:\Work\Test.txt"
'ルートディレクトリの取得
Dim rootDir As String = IO.Path.GetPathRoot(filepath)

MessageBox.Show(rootDir)

C#の例

string filepath = @"C:\Work\Test.txt";
// ルートディレクトリの取得
string rootDir = System.IO.Path.GetPathRoot(filepath);

MessageBox.Show(rootDir);
Please follow and like us:

コメント

タイトルとURLをコピーしました