发布于 5年前
Deno 判断路径是文件还是文件夹
const pathInfo = await Deno.stat('./src')
if (pathInfo.isDirectory()) {
// 如果是文件夹则获取路径
console.log(pathInfo.path)
} else if (pathInfo.isFile()) {
// 如果是文件则获取大小
console.log(pathInfo.len)
}
const pathInfo = await Deno.stat('./src')
if (pathInfo.isDirectory()) {
// 如果是文件夹则获取路径
console.log(pathInfo.path)
} else if (pathInfo.isFile()) {
// 如果是文件则获取大小
console.log(pathInfo.len)
}