Difference between revisions of "Fs.getFreeSpace"

From ComputerCraft Wiki
Jump to: navigation, search
(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...")
 
Line 2: Line 2:
  
  
== example ==
+
{example}{
  
<nowiki>
 
 
--Example Usage of fs.getFreeSpace
 
--Example Usage of fs.getFreeSpace
 
print(tostring(fs.getFreeSpace("/")))
 
print(tostring(fs.getFreeSpace("/")))
</nowiki>
+
}

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("/"))) }