commandFileCreate function
Function of file_create command
Implementation
void commandFileCreate(List args) {
File file = expEval(args[0]);
file.createSync(recursive: true);
}
Function of file_create command
void commandFileCreate(List args) {
File file = expEval(args[0]);
file.createSync(recursive: true);
}