commandFileExists function

bool commandFileExists(
  1. List args
)

Function of file_exists command

Implementation

bool commandFileExists(List args) {
  File file = expEval(args[0]);
  return file.existsSync();
}