private void DeleteStorageLocations() { StorageLocations.ForEach(fi => { lock (_syncRoot) { try { if (fi.Exists) fi.Delete(true); } catch (IOException) { } } }); }