updateSync method

  1. @override
void updateSync(
  1. String target
)
override

Synchronously updates an existing link.

Deletes the existing link at path and uses createSync to create a new link to target. Throws PathNotFoundException if the original link does not exist or any FileSystemException that deleteSync or createSync can throw.

Implementation

@override
void updateSync(String target) => delegate.updateSync(target);