FreekBes / insta_reddit_bot

[UNMAINTAINED] A bot which pulls images from Reddit and uploads them to Instagram. Former source code of @me_irl_bot
GNU General Public License v3.0
26 stars 10 forks source link

Automate on windows! #9

Closed Laezor closed 3 years ago

Laezor commented 3 years ago

Hi I saw that cleartemp wasn't working in windows so I made it work for windows.

function clearTemp() {
    exec(**`${__dirname}/clear.bat`**, function(err, stdout, stderr) {
        if (err) {
            console.warn("Failed to clear temp folder!");
        }
        else {
            console.log("Cleared temp folder");
        }
    });
}

I made a batch file so every time cleartemp is called the batch file will run to clear the temp folder.


del "%cd%\temp\*" /s /f /q

batch file will be on the same folder that main.js is.

FreekBes commented 3 years ago

Thanks, this could be helpful to others!