mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-06 02:30:47 -08:00
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
import fs from 'fs-extra';
|
|
import { DEFAULT_FIRST_WIKI_FOLDER_PATH } from '../src/constants/paths';
|
|
|
|
try {
|
|
fs.removeSync(DEFAULT_FIRST_WIKI_FOLDER_PATH);
|
|
} catch {
|
|
// ignore
|
|
}
|
|
fs.mkdirpSync(DEFAULT_FIRST_WIKI_FOLDER_PATH);
|