2021-10-05 05:39:44 -04:00
|
|
|
const fs = require("fs");
|
2022-03-02 02:48:08 -05:00
|
|
|
const rmSync = require("../extra/fs-rmSync.js");
|
2021-10-05 05:39:44 -04:00
|
|
|
|
2021-10-05 08:37:32 -04:00
|
|
|
const path = "./data/test";
|
|
|
|
|
|
|
|
if (fs.existsSync(path)) {
|
2022-03-02 02:48:08 -05:00
|
|
|
rmSync(path, {
|
2021-10-05 08:37:32 -04:00
|
|
|
recursive: true,
|
|
|
|
});
|
|
|
|
}
|