System.IOUtils.TDirectory.GetAttributes
Delphi
class function GetAttributes(const Path: string; FollowLink: Boolean = True): TFileAttributes; inline; static;
C++
static TFileAttributes __fastcall GetAttributes(const System::UnicodeString Path, bool FollowLink = true);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | public | System.IOUtils.pas System.IOUtils.hpp |
System.IOUtils | TDirectory |
説明
ディレクトリ属性を返します。
GetAttributes を呼び出すと、指定したディレクトリの属性を取得することができます。 GetAttributes の戻り値は TFileAttribute 値の集合であり、集合内のそれぞれの値が 1 つのファイル属性を表します。
このメソッドに必要なパラメータの一覧を以下の表に示します:
名前 | 意味 |
---|---|
Path |
属性を取得するするディレクトリのパス。 |
FollowLink |
シンボリック リンクが使用されているかどうかを示します。 |
メモ: ディレクトリにアクセスできない場合やパスが無効な場合には、GetAttributes は例外を発生させます。
メモ:Path パラメータが シンボリック リンク であり、FollowLink パラメータが True に設定されている場合、このメソッドは対象ディレクトリに対して実行されます。 最初の条件が True だが FollowLink パラメータが False に設定されている場合、メソッドはシンボリック リンクに対して実行されます。 リンクが壊れている場合、メソッドは常に False を返します。