Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Besides you can work with larger files than 2GB .... Win API WriteFile can work on and create larger files.
if you TRANSFORM both the DISKSPACE result and the number of bytes needed to avoid the scientific notation with exponents, you should be aware, that the result of the TRANSFORMS are strings,
lnDiskSpace = DISKSPACE(somepath)
lnDisplay = lnDiskSpace
lcUnits = "Bytes kB MB GB TB PB EB ZB YB"
lnWordNum = 1
Do While lnDisplay>1024 and lnWordNum<GETWORDCOUNT(lcUnits)
lnDisplay = lnDisplay/1024
lnWordNum = lnWordNum + 1
EndDo
lcUnit = GETWORDNUM(lcUnits,lnWordNum)
? lnDisplay, lcUnit