mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-15 12:47:48 +00:00
6 lines
170 B
JavaScript
6 lines
170 B
JavaScript
import fs from 'fs';
|
|
export function checkFolderExistAndCreate(folderPath) {
|
|
if (!fs.existsSync(folderPath)) {
|
|
fs.mkdirSync(folderPath, { recursive: true });
|
|
}
|
|
}
|