This method is specific to version 3, or higher, of the OS/2 operating system.
This instance method returns the creation date and time of a file.
#define INCL_WINWORKPLACE #include <os2.h> WPFileSystem *somSelf; /* Pointer to the object on which the method is being invoked. */ FDATE *fdate; /* Pointer to the date structure in which the file's creation date is returned. */ FTIME *ftime; /* Pointer to the time structure in which the file's creation time is returned. */ ULONG rc; /* Success indicator. */ rc = _wpQueryCreation(somSelf, fdate, ftime);