mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
bf30cbcf48
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
22 lines
527 B
TypeScript
22 lines
527 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { promises as fs } from 'fs';
|
|
|
|
/**
|
|
* Ensures the directory at `path` is deleted.
|
|
* If `path` does not exist, nothing happens.
|
|
*/
|
|
export async function ensureDeleted(path: string): Promise<void> {
|
|
try {
|
|
await fs.rm(path, { recursive: true });
|
|
} catch (e) {
|
|
if (e.code && e.code == 'ENOENT') {
|
|
// ignore error, path is already deleted
|
|
return;
|
|
}
|
|
throw e;
|
|
}
|
|
}
|