realpathSync method

  1. @override
String realpathSync(
  1. String path
)
override

Resolves symbolic links and returns the canonical pathname.

Implementation

@override
String realpathSync(String path) {
  return File(path).resolveSymbolicLinksSync();
}