Difference between revisions of "Fs.getFreeSpace"
From ComputerCraft Wiki
Superaxander (Talk | contribs) (Created page with "Fs.getFreeSpace() get's the free space in bytes of the path you give it == example == <nowiki> --Example Usage of fs.getFreeSpace print(tostring(fs.getFreeSpace("/"))) </no...") |
Superaxander (Talk | contribs) |
||
Line 2: | Line 2: | ||
− | + | {example}{ | |
− | |||
--Example Usage of fs.getFreeSpace | --Example Usage of fs.getFreeSpace | ||
print(tostring(fs.getFreeSpace("/"))) | print(tostring(fs.getFreeSpace("/"))) | ||
− | + | } |
Revision as of 19:20, 27 March 2013
Fs.getFreeSpace() get's the free space in bytes of the path you give it
{example}{
--Example Usage of fs.getFreeSpace print(tostring(fs.getFreeSpace("/"))) }