BUG: GETFILEINFOQQ with UNPACKTIMEQQ Fails in MS-DOS

Last reviewed: July 13, 1995
Article ID: Q118434
The information in this article applies to:
  • Microsoft FORTRAN PowerStation for MS-DOS, version 1.0a

SYMPTOMS

Using GETFILEINFOQQ to get the creation time of a file and UNPACKTIMEQQ to unpack the data into a usable form results in a time that is off by several hours. This problem occurs only in MS-DOS or version 3.1 of Windows.

STATUS

Microsoft has confirmed this to be a bug in Microsoft FORTRAN PowerStation for MS-DOS, version 1.0a.

MORE INFORMATION

To generate the the incorrect file time:

  1. Compile the sample code below, and name the code "TEST.FOR".

  2. Type "dir test.for" at the MS-DOS prompt in the directory containing the sample code. Record the present year, month, day, hour, and minute.

  3. Run the sample code from MS-DOS or from an MS-DOS command prompt in Windows (not Windows NT), and compare the date and time shown with the date and time from step 2.

Sample Code

c compile options needed: none

      include 'flib.fi'
      include 'flib.fd'
      integer*2 iyr, imon,iday,ihr,imin,isec
      character*1 AMPM /'a'/
      record /FILE$INFO/info
      ihandle = FILE$FIRST
      len=getfileinfoqq('TEST.FOR' ,info, ihandle)
      call unpacktimeqq(info.lastwrite, iyr,imon,iday,ihr,imin,isec)
      if (ihr .gt. 11) AMPM = 'p'
      if (ihr .gt. 12) ihr = ihr-12
      write (*,"(1x,2(I2.2,'-'),I2.2,I4,':',I2.2,a)")
     +  imon,iday,iyr-1900,ihr,imin,AMPM
      END


Additional reference words: 1.00a
KBCategory: kbprg kbbuglist
KBSubcategory: FORTLngIss


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 13, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.