Ejemplo n.º 1
0
        public PhysicalAppDataFolder(
            IPlatoFileSystem parentFileSystem,
            ILogger <PhysicalAppDataFolder> logger)
        {
            _logger = logger;

            if (!parentFileSystem.DirectoryExists(InternalRootPath))
            {
                parentFileSystem.CreateDirectory(InternalRootPath);
            }

            var root = parentFileSystem.GetDirectoryInfo(InternalRootPath).FullName;

            _fileSystem = new PlatoFileSystem(root, new PhysicalFileProvider(root), _logger);
        }
Ejemplo n.º 2
0
        public PhysicalSitesFolder(
            IPlatoFileSystem parentFileSystem,
            ILogger <PhysicalSitesFolder> logger,
            IHostEnvironment hostEnvironment)
        {
            _logger          = logger;
            _hostEnvironment = hostEnvironment;

            if (!parentFileSystem.DirectoryExists(InternalRootPath))
            {
                parentFileSystem.CreateDirectory(InternalRootPath);
            }

            var root = parentFileSystem.GetDirectoryInfo(InternalRootPath).FullName;

            _fileSystem = new PlatoFileSystem(root, new PhysicalFileProvider(root), _logger);
        }
Ejemplo n.º 3
0
 public void CreateDirectory(string path)
 {
     _fileSystem.CreateDirectory(path);
 }