isSymLink method

Future<bool> isSymLink(
  1. String path, {
  2. bool debug = false,
})

Implementation

Future<bool> isSymLink(String path, {bool debug = false}) async {
  return testFile(path, 'h', debug: debug);
}