gist

2012年5月9日水曜日

diskspaceで容量確認してみた

diskspaceは、ドライブの使用容量と空き容量、状態を確認できるパッケージです。

$ npm install diskspace

コードはこんな感じです。

diskspace = require 'diskspace'

diskspace.check '/', (total, free, status)->
 console.log 'Total : ' + total + ' Byte'
 console.log 'Free  : ' + free + ' Byte'
 console.log 'Status: ' + status

実行すると、こんな感じ。

$ coffee sample.coffee 
Total : 319213174784 Byte
Free  : 82739359744 Byte
Status: READY

大体あってますね。

使いどころがそんなに無いかも。

0 件のコメント: