directoryExists function

bool directoryExists(
  1. String path
)

Implementation

bool directoryExists(String path) {
  return std_std.directoryExists(path);
}