mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-08 06:16:27 +08:00
13 lines
433 B
JavaScript
13 lines
433 B
JavaScript
const fs = require("fs");
|
|
const path = require("path");
|
|
const os = require("os");
|
|
|
|
const getQuickcommandTempFile = (ext, name, dir = "quickcommandTempDir") => {
|
|
if (!name) name = new Date().getTime() + (Math.random() * 10 ** 6).toFixed();
|
|
let tempDir = path.join(os.tmpdir(), dir);
|
|
if (!fs.existsSync(tempDir)) fs.mkdirSync(tempDir);
|
|
return path.join(tempDir, `${name}.${ext}`);
|
|
};
|
|
|
|
module.exports = getQuickcommandTempFile;
|