readDir method

Future<Result<ReadDir, IoError>> readDir()

Returns an iterator over the entries within a directory. Note: using this method results in the program no longer being able to compile to web.

Implementation

Future<Result<ReadDir, IoError>> readDir() => Env.isWindows
    ? WindowsPath(_string).readDir()
    : UnixPath(_string).readDir();