mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
15 lines
494 B
TypeScript
15 lines
494 B
TypeScript
import { fileURLToPath } from 'node:url'
|
|
import fs from 'node:fs'
|
|
|
|
import { isExistingPath } from '../utils/isExistingPath.js'
|
|
|
|
export const TEMPORARY_URL = new URL('../../temp', import.meta.url)
|
|
export const TEMPORARY_PATH = fileURLToPath(TEMPORARY_URL)
|
|
|
|
export const createTemporaryEmptyFolder = async (): Promise<void> => {
|
|
if (await isExistingPath(TEMPORARY_PATH)) {
|
|
await fs.promises.rm(TEMPORARY_URL, { recursive: true, force: true })
|
|
}
|
|
await fs.promises.mkdir(TEMPORARY_URL)
|
|
}
|