FSE_FILE_SYSTEM_INFO

Return file system information related to disk operation.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     nuint32   FATMovedCount ; 
     nuint32   FATWriteErrorCount ; 
     nuint32   someoneElseDidItCount0 ; 
     nuint32   someoneElseDidItCount1 ; 
     nuint32   someoneElseDidItCount2 ; 
     nuint32   iRanOutSomeoneElseDidItCount0 ; 
     nuint32   iRanOutSomeoneElseDidItCount1 ; 
     nuint32   iRanOutSomeoneElseDidItCount2 ; 
     nuint32   turboFATBuildScrewedUpCount ; 
     nuint32   extraUseCountNodeCount ; 
     nuint32   extraExtraUseCountNodeCount ; 
     nuint32   errorReadingLastFATCount ; 
     nuint32   someoneElseUsingThisFileCount ; 
  } FSE_FILE_SYSTEM_INFO;
  

Delphi Structure

  uses calwin32 
   
  FSE_FILE_SYSTEM_INFO = packed Record 
      FATMovedCount : nuint32;  
      FATWriteErrorCount : nuint32;  
      someoneElseDidItCount0 : nuint32;  
      someoneElseDidItCount1 : nuint32;  
      someoneElseDidItCount2 : nuint32;  
      iRanOutSomeoneElseDidItCount0 : nuint32;  
      iRanOutSomeoneElseDidItCount1 : nuint32;  
      iRanOutSomeoneElseDidItCount2 : nuint32;  
      turboFATBuildScrewedUpCount : nuint32;  
      extraUseCountNodeCount : nuint32;  
      extraExtraUseCountNodeCount : nuint32;  
      errorReadingLastFATCount : nuint32;  
      someoneElseUsingThisFileCount : nuint32;
    End;
  

Fields

FATMovedCount
Specifies the number of times the NetWare server OS has moved the location of the FAT.
FATWriteErrorCount
Specifies the number of disk write errors in both the original and mirrored copy of a disk’s FAT sector.
someoneElseDidItCount0
Specifies this is used internally by the OS.
someoneElseDidItCount1
Specifies this is used internally by the OS.
someoneElseDidItCount2
Specifies this is used internally by the OS.
iRanOutSomeoneElseDidItCount0
Specifies this is used internally by the OS.
iRanOutSomeoneElseDidItCount1
Specifies this is used internally by the OS.
iRanOutSomeoneElseDidItCount2
Specifies this is used internally by the OS.
turboFATBuildScrewedUpCount
Specifies the number of times the OS tried to allocate a Turbo FAT index but failed.
extraUseCountNodeCount
Specifies the number of times the OS tried to allocate a use count node for a TTS transaction but failed.
extraExtraUseCountNodeCount
Specifies the number of times the OS tired to allocate an additional use count node for a TTS transaction but failed.
errorReadingLastFATCount
Specifies the number of times the OS received an error reading the data in the last FAT.
someoneElseUsingThisFileCount
Specifies the number of times the OS was reading a file that another process was also reading.