34
chenyc
2024-12-03 41ce1252805212ce336f292a69a8dbdcbf981fc0
1
2
3
4
5
6
7
8
9
import { lstat } from 'node:fs/promises'
import { cwd } from 'node:process'
 
lstat(cwd()).then(stats => {
  console.log('[fs.lstat]', stats)
  console.log('-----')
}).catch(err => {
  console.error(err)
})