“NodeJS otrzymuj statystyki plików” Kod odpowiedzi

NodeJs otrzymują rozmiar pliku

var fs = require("fs"); //Load the filesystem module
var stats = fs.statSync("myfile.txt")
var fileSizeInBytes = stats["size"]
//Convert the file size to megabytes (optional)
var fileSizeInMegabytes = fileSizeInBytes / 1000000.0
Old Knight

NodeJS otrzymuj statystyki plików

const fs = require('fs')
try {
  const stats = fs.statSync('/Users/joe/test.txt')
} catch (err) {
  console.error(err)
}
Poor Pollan

NodeJS otrzymuj statystyki plików

JS
copy
const fs = require('fs')
fs.stat('/Users/joe/test.txt', (err, stats) => {
  if (err) {
    console.error(err)
    return
  }
  //we have access to the file stats in `stats`
})
Poor Pollan

Odpowiedzi podobne do “NodeJS otrzymuj statystyki plików”

Pytania podobne do “NodeJS otrzymuj statystyki plików”

Więcej pokrewnych odpowiedzi na “NodeJS otrzymuj statystyki plików” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu