clearWebdavPid method
Implementation
Future<void> clearWebdavPid() async {
final file = File(webdavPidFile);
if (await file.exists()) {
await file.delete();
}
}
Future<void> clearWebdavPid() async {
final file = File(webdavPidFile);
if (await file.exists()) {
await file.delete();
}
}