2021-04-22 15:29:23 -04:00
|
|
|
/*
|
2022-01-30 16:00:17 -05:00
|
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
2021-04-22 15:29:23 -04:00
|
|
|
*
|
|
|
|
* 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 {
|
2022-01-30 16:00:17 -05:00
|
|
|
await fs.rm(path, { recursive: true });
|
2021-04-22 15:29:23 -04:00
|
|
|
} catch (e) {
|
|
|
|
if (e.code && e.code == 'ENOENT') {
|
|
|
|
// ignore error, path is already deleted
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|