System.IOUtils.TPath.IsExtendedPrefixed

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

class function IsExtendedPrefixed(const Path: string): Boolean; inline; static;

C++

static bool __fastcall IsExtendedPrefixed(const System::UnicodeString Path);

プロパティ

種類 可視性 ソース ユニット
function public
System.IOUtils.pas
System.IOUtils.hpp
System.IOUtils TPath

説明

指定されたパスに拡張プレフィックスが含まれているかどうかを確かめます。

IsExtendedPrefixed を呼び出すと、指定されたパスに拡張プレフィックスが含まれているかどうかを確かめることができます。

先頭に \\?\ または \\?\UNC\ が付くパスは Windows 固有のもので、非常に長くてもよく、255 文字(MAX_PATH)には制限されません。255 文字より長いパスを扱うのは、今日よくあることです。それらの先頭に \\?\ を付ければ、問題は解決します。

関連項目