ExtFreeDiskSpace external for LiveCode 5 iOS

Find out what's going on with LiveCode (the company), product releases, announcements, and events.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
Mark
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 5150
Joined: Thu Feb 23, 2006 9:24 pm
Contact:

ExtFreeDiskSpace external for LiveCode 5 iOS

Post by Mark » Wed Nov 30, 2011 4:10 am

Hi everyone,

Seeing requests for a disk space function on the mailing list a few times, I decided to write an external. ExtFreeDiskSpace is a LiveCode external for iOS, which reads the total and free disk space and returns these values as integers measured in kilobytes.

You could this this for example:

Code: Select all

fuction freeDiskSpace24
   put 1000^2 into mySq1024
   set the numberFormat to "#.00"
   put extFreeDiskSpace()/mySq1024 into myGBs
   return myGBs && "GB"
end freeDiskSpace24
You can download the external at http://qery.us/1di . Please let me know if you encounter any problems with this external.

To access this download, you need to make a donation first (if you haven't done so yet).

Kind regards,

Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode

Post Reply