Exceptions
Not_Implemented |
|
Can be raised by any subprogram on a given platform that does not
support a specific attribute.
|
|
Other Items:
|
|
|
|
|
|
|
function Is_Hidden (Name : in String)
return Boolean;
|
|
function Is_Hidden (Name : in Directory_Entry_Type)
return Boolean;
|
|
Returns True if the file or directory represented by Name is
hidden. A hidden file or directory does not appear in normal directory
listings.
|
|
|
function Is_Not_Archived (Name : in Directory_Entry_Type)
return Boolean;
|
|
Returns True if the file or directory represented by Name needs
to be archived (backed-up). The value is set when the file is modified,
and typically is cleared by backup programs.
|
|
|
function Is_Read_Only (Name : in Directory_Entry_Type)
return Boolean;
|
|
Returns True if the file or directory represented by Name is
read-only. A read-only file cannot be written or deleted. A read-only
directory cannot be deleted.
|
|
function Is_System (Name : in String)
return Boolean;
|
|
function Is_System (Name : in Directory_Entry_Type)
return Boolean;
|
|
Returns True if the file or directory represented by Name is a
system file or directory. A system file or directory is part of the
operating system.
|
|
|
|
|