commandFile function

File commandFile(
  1. List args
)

Function of file command

Implementation

File commandFile(List args) {
  String name = expEval(args[0]);
  return File(name);
}