Answer the question
In order to leave comments, you need to log in
How to write an if else condition?
How to write a condition correctly:
if (в корне находится папка с именем folder) {
выполнить что-то
} else {
выполнить что-то другое
}
Answer the question
In order to leave comments, you need to log in
Use fs.existsSync() It will work something like this
var fs = require('fs');
if (fs.existsSync('./folder')) {
// выполнить что-то
} else {
// выполнить что-то другое
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question