System.SysUtils.FileSearch

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

Delphi

function FileSearch(const Name, DirList: string): string;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall FileSearch(const System::UnicodeString Name, const System::UnicodeString DirList);

プロパティ

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


説明

指定のディレクトリ パス内でファイルを探します。 この検索は、常に現在のドライブの現在のディレクトリから始まります。

FileSearch は、現在のディレクトリと、DirList パラメータで渡されたディレクトリで、Name という名前のファイルを検索します。

FileSearch は、Name パラメータと一致するファイルが見つかると、そのファイルのパス名を表す文字列を返します。一致するファイルが存在しない場合は、FileSearch は空の文字列を返します。

メモ:DirList は、パス名のリストで、Windows ではセミコロンMacOS ではコロンで区切られています。

関連項目

コード サンプル