[Linux] 取得硬碟空間資訊

  • 1410
  • 0

摘要:[Linux] 取得硬碟空間資訊

df指令可以列出硬碟空間資訊

長得像這樣

Filesystem             Size   Used   Free   Blksize
/dev                   236M    52K   236M   4096
/mnt/asec              236M     0K   236M   4096
/mnt/obb               236M     0K   236M   4096
/system                503M   273M   230M   4096
/data                 1005M   176M   829M   4096
/cache                 502M     8M   494M   4096
/mnt/sdcard              1G   240M     1G   4096
/mnt/secure/asec         1G   240M     1G   4096

如果要用java語言來控制

File devFdr = new File("/dev");
output = "/dev free = " + devFdr.getFreeSpace();