commandFileCreate function

void commandFileCreate(
  1. List args
)

Function of file_create command

Implementation

void commandFileCreate(List args) {
  File file = expEval(args[0]);
  file.createSync(recursive: true);
}