DISKSPACE()

From Lianjapedia
Revision as of 11:28, 10 February 2012 by Yvonne.milne (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Purpose

Function to return available disk space

Syntax

DISKSPACE()

See Also

HEADER(), RECCOUNT(), RECSIZE(), SET DEFAULT

Description

The DISKSPACE() function returns the available space on the default disk drive. The available space is represented in bytes as a numeric value.

Example

? diskspace()
  60754290
// Example of a routine within a program
use patrons
size = header()+recsize()*reccount()
if size > diskspace()
    dialog box "Insufficient disk space."
return
endif