CheckFreeSpace

bool CheckFreeSpace(string directory)

Checks if there would be enough space on the specified directory's disk to save the current game. It returns TRUE if there is, FALSE if not.

Example
(if(not CheckFreeSpace("C:\"))
    Print("There's not enough space on C:\ to store the current game!")
)