node disk
1.0.0
$ npm install --save disk
Internal:
Blokir Perangkat:
Sistem File:
var Disk = require ( 'disk' )
Siapkan perangkat untuk digunakan. Ini bisa berupa apa saja dengan API yang kompatibel dengan perangkat blok.
var device = new BlockDevice ( {
path : BlockDevice . getPath ( 0 )
} )
Buat disk:
var disk = new Disk ( device )
Buka perangkat:
// This also attempts to detect it's block size if unspecified,
// as well as reading the MBR & GPT on the device
disk . open ( function ( error ) { } )
Membaca atau menulis MBR ( disk.mbr
) dari atau ke perangkat:
disk . readMBR ( function ( error , mbr ) { } )
disk . writeMBR ( function ( error ) { } )
Membaca atau menulis GPT ( disk.gpt
) dari atau ke perangkat:
disk . readGPT ( function ( error , gpt ) { } )
disk . writeGPT ( function ( error ) { } )
Verifikasi GPT cadangan; CATATAN: Callback akan dipanggil dengan kesalahan dan GPT cadangan jika tidak terverifikasi.
disk . verifyGPT ( function ( error , backupGPT ) { } )
Tutup perangkat:
disk . close ( function ( error ) { } )
Properti:
Metode: