Jump to content

FILEFINDBUF: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
== FILEFINDBUF ==
Find file buffer data structure.


Find file buffer data structure.
=== Type ===
 
  [[FDATE]]  fdateCreation
=== Type ===  
  [[FTIME]]  ftimeCreation
 
  FDATE  fdateLastAccess
  [[OS2 API:DataType:FDATE|FDATE]]  fdateCreation
  FTIME  ftimeLastAccess
  [[OS2 API:DataType:FTIME|FTIME]]  ftimeCreation
  FDATE  fdateLastWrite
  [[OS2 API:DataType:FDATE|FDATE]] fdateLastAccess
  FTIME  ftimeLastWrite
  [[OS2 API:DataType:FTIME|FTIME]] ftimeLastAccess
  [[ULONG]]  cbFile
  [[OS2 API:DataType:FDATE|FDATE]] fdateLastWrite
  ULONG  cbFileAlloc
  [[OS2 API:DataType:FTIME|FTIME]] ftimeLastWrite
  [[USHORT]] attrFile
  [[OS2 API:DataType:ULONG|ULONG]]  cbFile
  [[UCHAR]]  cchName
  [[OS2 API:DataType:ULONG|ULONG]] cbFileAlloc
  [[CHAR]]  achName[ [[CCHMAXPATHCOMP]] ]
  [[OS2 API:DataType:USHORT|USHORT]] attrFile
  [[OS2 API:DataType:UCHAR|UCHAR]]  cchName
  [[OS2 API:DataType:CHAR|CHAR]]  achName[ [[OS2 API:Constant:CCHMAXPATHCOMP|CCHMAXPATHCOMP]] ]
   
   
==== C Declaration Method ====
==== C Declaration Method ====
typedef struct
typedef struct


=== Fields ===
=== Fields ===
 
;fdateCreation:Date of file creation.
fdateCreation   Date of file creation.
;ftimeCreation:Time of file creation.
ftimeCreation   Time of file creation.
;fdateLastAccess:Date of last access.
fdateLastAccess Date of last access.
;ftimeLastAccess:Time of last access.
ftimeLastAccess Time of last access.
;fdateLastWrite:Date of last write.
fdateLastWrite Date of last write.
;cbFile:Size of file.
cbFile         Size of file.
;cbFileAlloc:Allocated size.
cbFileAlloc     Allocated size.
;attrFile:File attributes.
attrFile       File attributes.
;cchName:Length of file name.
cchName         Length of file name.
;achName[ [[CCHMAXPATHCOMP]] ]:File name including null terminator.
achName[ [[OS2 API:Constant:CCHMAXPATHCOMP|CCHMAXPATHCOMP]] ] File name including null terminator.
 
 
[[OS2_API | Back to OS/2 API]]
 


[[Category:The OS/2 API Project]]
[[Category:Data type]]

Latest revision as of 01:44, 26 January 2020

Find file buffer data structure.

Type

FDATE  fdateCreation
FTIME  ftimeCreation
FDATE  fdateLastAccess
FTIME  ftimeLastAccess
FDATE  fdateLastWrite
FTIME  ftimeLastWrite
ULONG  cbFile
ULONG  cbFileAlloc
USHORT attrFile
UCHAR  cchName
CHAR   achName[ CCHMAXPATHCOMP ]

C Declaration Method

typedef struct

Fields

fdateCreation
Date of file creation.
ftimeCreation
Time of file creation.
fdateLastAccess
Date of last access.
ftimeLastAccess
Time of last access.
fdateLastWrite
Date of last write.
cbFile
Size of file.
cbFileAlloc
Allocated size.
attrFile
File attributes.
cchName
Length of file name.
achName[ CCHMAXPATHCOMP ]
File name including null terminator.