path property

PathUri path
latefinal

The path of file

Implementation

late final PathUri path = () {
  final href = PathUri.parse(Uri.decodeFull(_response.href!));
  return PathUri(
    isAbsolute: false,
    isDirectory: href.isDirectory,
    pathSegments: href.pathSegments.sublist(webdavBase.pathSegments.length),
  );
}();