BugTracker.Model.BugRepository.EnsureBugStore C# (CSharp) Méthode

EnsureBugStore() private méthode

private EnsureBugStore ( ) : void
Résultat void
        private void EnsureBugStore()
        {
            if (!Directory.Exists(BugStore))
                Directory.CreateDirectory(BugStore);
        }
    }