System.IOUtils.TFile.GetAttributes

From RAD Studio API Documentation
Jump to: navigation, search

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);

Properties

Type Visibility Source Unit Parent
function public
System.IOUtils.pas
System.IOUtils.hpp
System.IOUtils TFile

Description

Returns the file attributes.

Call GetAttributes to obtain the attributes for a given file. The return value of GetAttributes is a set of TFileAttribute values; each value of the set represents a file attribute.


The following table lists the parameters expected by this method:

Name Meaning

Path

The path to the file for which the attributes are obtained.

FollowLink

Specifies whether the symbolic link is used.

Note: GetAttributes raises an exception if the file cannot be accessed or the path is invalid.

Note: If the Path parameter is a symbolic link and the FollowLink parameter is set to True, the method is performed on the target file. If the first condition is True and the FollowLink parameter is set to False, the method will be performed on the symbolic link. If the link is broken, the method will always return False.

See Also

Code Examples