Fix Server.js Path

This commit is contained in:
MasterAcnolo
2025-09-17 10:30:48 +02:00
parent af743be5b0
commit b59cb9f57f
2 changed files with 3 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ const app = express(); // Création de linstance Express, notre serveur web
// Définition du dossier par défaut où enregistrer les téléchargements
// On prend le dossier Téléchargements de lutilisateur Windows (USERPROFILE)
const downloadsPath = path.join(process.env.USERPROFILE, "Downloads");
const outputFolder = path.join(downloadsPath, "Freedom Loader Output");
const outputFolder = path.join(downloadsPath, "Freedom Loader");
// Création du dossier de sortie sil nexiste pas déjà
if (!fs.existsSync(outputFolder)) {