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

TSearchFileInPathFlags

Set type used to store values from the TSearchFileInPathFlag enumeration.

Declaration

Source position: fileutil.pas line 81

type TSearchFileInPathFlags = set of (

  sffDontSearchInBasePath,

  

Do not search in BasePath, search only in SearchPath.

  sffSearchLoUpCase,

  

Performs a case-insensitive search for file or directory names.

  sffFile,

  

Must be a file, and not a directory.

  sffExecutable,

  

File must be an executable file for the platform.

  sffDequoteSearchPath

  

Removes ANSI Quotation Marks in a search path or file name.

);

Description

TSearchFileInPathFlags is a Set type used to store zero (0) or more values from the TSearchFileInPathFlag enumeration. It is the type passed as an argument to the SearchFileInPath and SearchAllFilesInPath routines.

See also

TSearchFileInPathFlag

  

Flags used to control options used when searching for file(s) in a given path.

SearchFileInPath

  

Searches for a file name in a given path using the specified base path and options.

SearchAllFilesInPath

  

SearchAllFilesInPath - searches for all files named Filename in the given SearchPath using the supplied BasePath with the specified Delimiter and the options listed in Flags.


Version 3.2 Generated 2024-02-25 Home