[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'LazFileCache' (#lazutils)

TFileStateCacheItemFlag

Represents flag values used for files or directories in the state caching mechanism.

Declaration

Source position: lazfilecache.pas line 20

type TFileStateCacheItemFlag = (

  fsciExists,

  

File or directory exists.

  fsciDirectory,

  

File exists and is a directory.

  fsciReadable,

  

File is readable.

  fsciWritable,

  

File is writable.

  fsciDirectoryReadable,

  

File is a directory and can be searched.

  fsciDirectoryWritable,

  

File is a directory and allows new files to be created.

  fsciText,

  

File is a text (not an executable binary) file.

  fsciExecutable,

  

File is an executable binary file.

  fsciAge,

  

file age is valid.

  fsciPhysical

  

Physical file name for the file is valid.

);

Description

TFileStateCacheItemFlag is an enumerated type with values that represent flags used for files or directories in the state caching mechanism. Values from the enumeration are stored in the TFileStateCacheItemFlags set type, and used in the implementation of the TFileStateCacheItem class.

See also

TFileStateCacheItemFlags

  

Set type used to store TFileStateCacheItemFlag enumeration values.

TFileStateCacheItem

  

Contains information about a file or directory in the state caching mechanism.

TFileStateCache

  

Implements a state caching mechanism for files and directories.


Version 3.4 Generated 2024-05-24 Home