feat: add directory creation for post folder
- Implement recursive directory creation for post folder - Ensure that parent directories are created if they don't exist
This commit is contained in:
parent
8287e42e6e
commit
65112e5cb0
1 changed files with 6 additions and 0 deletions
|
|
@ -36,6 +36,12 @@ if (fs.existsSync(fullPath)) {
|
||||||
process.exit(1)
|
process.exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// recursive mode creates multi-level directories
|
||||||
|
const dirPath = path.dirname(fullPath)
|
||||||
|
if (!fs.existsSync(dirPath)) {
|
||||||
|
fs.mkdirSync(dirPath, { recursive: true })
|
||||||
|
}
|
||||||
|
|
||||||
const content = `---
|
const content = `---
|
||||||
title: ${args[0]}
|
title: ${args[0]}
|
||||||
published: ${getDate()}
|
published: ${getDate()}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue