Einzelnen Beitrag anzeigen

Benutzerbild von sakura
sakura

Registriert seit: 10. Jun 2002
Ort: München
11.412 Beiträge
 
Delphi 11 Alexandria
 
#9

Re: FindFirst FindNext - Datei muss achiviert werden?

  Alt 7. Okt 2004, 11:30
Zitat von alcaeus:
hier mal die Konstanten wie sie in der Hilfe sind:
Code:
faReadOnly       1        Read-only files
faHidden         2        Hidden files
faSysFile        4        System files
faVolumeID       8        Volume ID files
faDirectory      16       Directory files
faArchive        32       Archive files
faSymLink        64       Symbolic link
faAnyFile        71       Any file
An der Stelle ist die Hilfe falsch Das leite ich mal weiter
Hier die Definitionen aus der SysUtils.pas
Delphi-Quellcode:
const
  faReadOnly = $00000001 platform;
  faHidden = $00000002 platform;
  faSysFile = $00000004 platform;
  faVolumeID = $00000008 platform;
  faDirectory = $00000010;
  faArchive = $00000020 platform;
  faSymLink = $00000040 platform;
  faAnyFile = $0000003F;
......
Daniel W.
Ich bin nicht zurück, ich tue nur so
  Mit Zitat antworten Zitat