Akka.Interfaced.Persistence.Tests.CleanupLocalSnapshots.DeleteStorageLocations C# (CSharp) 메소드

DeleteStorageLocations() 개인적인 메소드

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