DbfDskSize() Determines the size of a selected (.dbf) file on a disk drive ------------------------------------------------------------------------------ Syntax DbfDskSize() --> nFileSize Returns DbfDskSize() returns the size of the current database on the floppy or hard disk (i.e., how many bytes are saved in this file). Description One of the DbfDskSize() function's most useful applications is when it is used in conjunction with DbfSize(). When the results for both functions indicate there is a deviation in the size of a database, this means a portion of the data is not yet written to the floppy/hard disk. You can also determine if and when new input is written to a floppy/hard disk. Note . This function operates on the currently SELECTed work area. Example Determine if a portion of data input has been written out to disk yet: IF DbfSize() - DbfDskSize() >= 512 * COMMIT // Warning! Works only with DOS 3.3 and up ENDIF
See Also: DbfSize()