Move a file to a new location.
@override Future<bool> move(String from, String to) async { if (!await copy(from, to)) return false; return delete(from); }