Native implementation that retrieves drive volume name for a given drive mount point. Currently supports Windows only.
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.