Nuxt/packages/nuxi/src/utils/fs.ts

30 lines
630 B
TypeScript
Raw Normal View History

import { promises as fsp } from 'fs'
import { dirname } from 'pathe'
// Check if a file exists
export async function exists (path: string) {
try {
await fsp.access(path)
return true
} catch {
return false
}
}
export async function clearDir (path: string) {
await fsp.rm(path, { recursive: true, force: true })
await fsp.mkdir(path, { recursive: true })
}
export function findup<T> (rootDir: string, fn: (dir: string) => T | undefined): T | null {
let dir = rootDir
while (dir !== dirname(dir)) {
const res = fn(dir)
if (res) {
return res
}
dir = dirname(dir)
}
return null
}