private FileSystem() { // Disabled for now as the problem is in IonicZip that doesn't work with them /* Directory = new UncDirectoryProvider(this); File = new UncFileProvider(this); Zip = new UncZipProvider(this); Path = new PathProvider(this); Security = new UncSecurityProvider(this); */ this.Directory = new DirectoryProvider(this); this.File = new FileProvider(this); this.Zip = new ZipProvider(this); this.Path = new PathProvider(this); this.Security = new SecurityProvider(this); }
private FileSystem() { // Disabled for now as the problem is in IonicZip that doesn't work with them /* * Directory = new UncDirectoryProvider(this); * File = new UncFileProvider(this); * Zip = new UncZipProvider(this); * Path = new PathProvider(this); * Security = new UncSecurityProvider(this); */ Directory = new DirectoryProvider(this); File = new FileProvider(this); Zip = new ZipProvider(this); Security = new SecurityProvider(this); }