album-exif-analyzer
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -7,4 +7,2 @@ #!/usr/bin/env node | ||
console.log(process.cwd()); | ||
const filestream = readdirp(process.cwd(), { | ||
@@ -18,3 +16,3 @@ fileFilter: ["*.png", "*.jpg", "*.jpeg", "*.cr2"], | ||
const outputFile = "output.csv"; | ||
const outputFile = `${Date.now()}-album-exif-analyzer.csv`; | ||
let header = ""; | ||
@@ -48,2 +46,3 @@ let exifData; | ||
fs.appendFileSync(outputFile, s); | ||
console.log(`Wrote data to ${outputFile}`); | ||
} else { | ||
@@ -50,0 +49,0 @@ console.log("No data found"); |
{ | ||
"name": "album-exif-analyzer", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Recursively extracts EXIF data of all of the photos in a directory into a analyzable format", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3804