View difference between Paste ID: tscycuNL and 3iqWBU23
SHOW: | | - or go back to the newest paste.
1
print("Drive capacity is", fs.getCapacity("/"),"bytes", "while", fs.getFreeSpace("/"),"bytes", "are free.")
2
UsedSpace = fs.getCapacity("/")-fs.getFreeSpace("/")
3
print("Which means", UsedSpace,"bytes", "are being used.")
4
term.setTextColor(colors.green)
5
print("Use 'dir' to explore the structure of your hard drive!")
6
term.setTextColor(colors.white)