ipull
Version:
The only file downloader you'll ever need. For node.js and the browser, CLI and library for fast and reliable file downloads.
27 lines • 795 B
JavaScript
import path from "path";
import fs from "fs-extra";
import { AppDB } from "../../settings/settings.js";
const DEFAULT_DOWNLOAD_DIR = process.cwd();
export default async function findDownloadDir(fileName) {
const downloadLocation = AppDB.data[path.extname(fileName || "")];
const defaultLocation = AppDB.data["default"];
return downloadLocation || defaultLocation || DEFAULT_DOWNLOAD_DIR;
}
export function findFileName(url) {
try {
return path.basename(new URL(url).pathname);
}
catch {
return path.basename(url);
}
}
export async function downloadToDirectory(path) {
try {
const stats = await fs.lstat(path);
return stats.isDirectory();
}
catch {
return false;
}
}
//# sourceMappingURL=find-download-dir.js.map