1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/cli/utils/createTemporaryEmptyFolder.ts

14 lines
425 B
TypeScript

import path from 'node:path'
import fs from 'node:fs'
import { isExistingPath } from '../utils/isExistingPath'
export const TEMPORARY_PATH = path.join(__dirname, '..', '..', 'temp')
export const createTemporaryEmptyFolder = async (): Promise<void> => {
if (await isExistingPath(TEMPORARY_PATH)) {
await fs.promises.rm(TEMPORARY_PATH, { recursive: true, force: true })
}
await fs.promises.mkdir(TEMPORARY_PATH)
}