次の方法で共有


Path.IsPathRooted メソッド

指定したパス文字列に絶対パス情報または相対パスの情報が含まれているかを示す値を取得します。

Public Shared Function IsPathRooted( _
   ByVal path As String _) As Boolean
[C#]
public static bool IsPathRooted(stringpath);
[C++]
public: static bool IsPathRooted(String* path);
[JScript]
public static function IsPathRooted(
   path : String) : Boolean;

パラメータ

  • path
    テストするパス。

戻り値

path に絶対パスが含まれている場合は true 。それ以外の場合は false

例外

例外の種類 条件
ArgumentException path に、 InvalidPathChars で定義されている無効な文字が 1 つ以上含まれています。

解説

このメソッドは、パス名またはファイル名が存在することを検査しません。

IsPathRooted は、"\\MyDir\\MyFile.txt" や "C:\\MyDir" などの path 文字列に対しては true を返します。"MyDir" などの path 文字列に対しては、 false を返します。

このメソッドの使用例については、以下の「使用例」を参照してください。その他の一般的な I/O タスクまたは関連する I/O タスクの例を次の表に示します。

実行するタスク 参考例があるトピック
テキスト ファイルを作成する。 ファイルへのテキストの書き込み
テキスト ファイルに書き込む。 ファイルへのテキストの書き込み
テキスト ファイルから読み取る。 ファイルからのテキストの読み取り
ファイルの絶対パスを取得する。 GetFullPath
パスからディレクトリ名だけを取得する。 GetDirectoryName
ディレクトリが存在するかどうかを判別する。 Exists

使用例

[Visual Basic, C#, C++] IsPathRooted プロパティを使用する例を次に示します。

 
Dim fileName As String = "C:\mydir\myfile.ext"
Dim UncPath As String = "\\myPc\mydir\myfile"
Dim relativePath As String = "mydir\sudir\"
Dim result As Boolean

result = Path.IsPathRooted(fileName)
Console.WriteLine("IsPathRooted('{0}') returns {1}", fileName, result)

result = Path.IsPathRooted(UncPath)
Console.WriteLine("IsPathRooted('{0}') returns {1}", UncPath, result)

result = Path.IsPathRooted(relativePath)
Console.WriteLine("IsPathRooted('{0}') returns {1}", relativePath, result)

[C#] 
string fileName = @"C:\mydir\myfile.ext";
string UncPath = @"\\myPc\mydir\myfile";
string relativePath = @"mydir\sudir\";
bool result;

result = Path.IsPathRooted(fileName);
Console.WriteLine("IsPathRooted('{0}') returns {1}", 
    fileName, result);

result = Path.IsPathRooted(UncPath);
Console.WriteLine("IsPathRooted('{0}') returns {1}", 
    UncPath, result);

result = Path.IsPathRooted(relativePath);
Console.WriteLine("IsPathRooted('{0}') returns {1}", 
    relativePath, result);

[C++] 
String * fileName = S"C:\\mydir\\myfile.ext";
String * UncPath = S"\\\\myPc\\mydir\\myfile";
String * relativePath = S"mydir\\sudir\\";
bool result;

result = Path::IsPathRooted(fileName);
Console::WriteLine(S"IsPathRooted('{0}') returns {1}", 
   fileName, result.ToString());

result = Path::IsPathRooted(UncPath);
Console::WriteLine(S"IsPathRooted('{0}') returns {1}", 
   UncPath, result.ToString());

result = Path::IsPathRooted(relativePath);
Console::WriteLine(S"IsPathRooted('{0}') returns {1}", 
   relativePath, result.ToString());

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard

参照

Path クラス | Path メンバ | System.IO 名前空間 | 入出力操作 | ファイルからのテキストの読み取り | ファイルへのテキストの書き込み