setCwd function

void setCwd(
  1. String path
)

Sets current directory

Implementation

void setCwd(String path) {
  path = pathExpand(path);
  dart_io.Directory.current = path; //pathFullName(path);
}