commandFileRemove function

void commandFileRemove(
  1. List args
)

Function of file_remove command

Implementation

void commandFileRemove(List args) {
  File file = expEval(args[0]);
  file.deleteSync();
}