DirectoryExists method

bool DirectoryExists(
  1. String dirPath
)

Implementation

bool DirectoryExists(
  String dirPath,
) => run(
  () => 'DirectoryExists($dirPath)',
  () => rl.Core.DirectoryExists(refStr(dirPath)),
);