npm.io
1.0.1 • Published 6 years ago

get-file-properties

Licence
MIT
Version
1.0.1
Deps
0
Size
17 kB
Vulns
0
Weekly
0
Stars
6
DeprecatedThis package is deprecated

GetFileProperties

What is it?

Zero dependency tool for getting a file's properties/metadata.

Limitations

Currently only works on Windows, though I'm open to pull requests to add functionality for MacOS and Linux.

Usage

npm i get-file-properties
import { getFileProperties, WmicDataObject } from 'get-file-properties'

async function demo() {
  // Ensure you are using double backslashes in your file path
  const filepath: string = 'C:\\path\\to-my\\file.txt'
  let metadata: WmicDataObject

  metadata = await getFileProperties(filepath)
  console.log(metadata.FileSize)
}

Keywords