commandFileRemove function
Function of file_remove command
Implementation
void commandFileRemove(List args) {
File file = expEval(args[0]);
file.deleteSync();
}
Function of file_remove command
void commandFileRemove(List args) {
File file = expEval(args[0]);
file.deleteSync();
}