发布于 5年前
Deno 获取文件大小
// 读取文件信息
const chromeFile = await Deno.stat("./chrome.exe")
// 获取文件的字节大小
const chromeFileSize = chromeFile.len
console.log(chromeFileSize)
// 读取文件信息
const chromeFile = await Deno.stat("./chrome.exe")
// 获取文件的字节大小
const chromeFileSize = chromeFile.len
console.log(chromeFileSize)