Akka.Interfaced.Persistence.Tests.CleanupLocalSnapshots.DeleteStorageLocations C# (CSharp) Method

DeleteStorageLocations() private method

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