2022-04-15 15:19:05 +00:00
|
|
|
import { promises as fsp } from 'node:fs'
|
2022-08-16 13:14:26 +00:00
|
|
|
import { dirname } from 'pathe'
|
2022-07-25 15:19:17 +00:00
|
|
|
import consola from 'consola'
|
2021-07-26 14:46:19 +00:00
|
|
|
|
|
|
|
// Check if a file exists
|
|
|
|
export async function exists (path: string) {
|
|
|
|
try {
|
|
|
|
await fsp.access(path)
|
|
|
|
return true
|
|
|
|
} catch {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
2021-10-18 14:22:02 +00:00
|
|
|
|
|
|
|
export async function clearDir (path: string) {
|
2022-04-12 19:06:44 +00:00
|
|
|
await fsp.rm(path, { recursive: true, force: true })
|
2021-10-18 14:22:02 +00:00
|
|
|
await fsp.mkdir(path, { recursive: true })
|
|
|
|
}
|
2021-10-29 08:41:04 +00:00
|
|
|
|
2022-07-25 15:19:17 +00:00
|
|
|
export async function rmRecursive (paths: string[]) {
|
2022-08-11 11:41:53 +00:00
|
|
|
await Promise.all(paths.filter(p => typeof p === 'string').map(async (path) => {
|
|
|
|
consola.debug('Removing recursive path', path)
|
|
|
|
await fsp.rm(path, { recursive: true, force: true }).catch(() => {})
|
2022-07-25 15:19:17 +00:00
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2022-08-11 11:41:53 +00:00
|
|
|
export async function touchFile (path: string) {
|
|
|
|
const time = new Date()
|
|
|
|
await fsp.utimes(path, time, time).catch(() => {})
|
|
|
|
}
|
|
|
|
|
2021-10-29 08:41:04 +00:00
|
|
|
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
|
|
|
|
}
|