Binboo.Core.Persistence.StorageManager.StorageManager C# (CSharp) Méthode

StorageManager() public méthode

public StorageManager ( string basePath ) : System
basePath string
Résultat System
        public StorageManager(string basePath)
        {
            _basePath = basePath ?? new CoreConfig().StoragePath;
            if (!Directory.Exists(_basePath))
            {
                Directory.CreateDirectory(_basePath);
            }
        }

Same methods

StorageManager::StorageManager ( ) : System