1.0.3 • Published 4 years ago

drive-name v1.0.3

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
4 years ago

drive-name

Native implementation that retrieves drive volume name for a given drive mount point. Currently supports Windows only.

licence npm version Dependencies status

Usage

import { getDriveName } from 'drive-name';

console.log(getDriveName('C://'));

This module works great in conjunction with drivelist:

import * as drivelist from 'drivelist';
import { getDriveName } from 'drive-name';

// print all the drives and their names respectively
drivelist.list().then(drives => {
    drives.forEach(drive => {
        drive.mountpoints.forEach(mountpoint => console.log(mountpoint.path, getDriveName(mountpoint.path)));
    });
});

Author: Benny Megidish.