Example #1
0
        IVfsFileInfo IVfsFilesystem.FileInfo(IVfsPath path)
        {
            var file = new VfsBakedAsset_FileInfo(db, bac, this, path);
            var com  = new VfsBakedAsset_Common(db, bac, this, null, file, path);

            file._attachCom(com);

            return(file);
        }
Example #2
0
        IVfsDirectoryInfo IVfsFilesystem.DirectoryInfo(IVfsPath path)
        {
            var dir = new VfsBakedAsset_Directory(db, bac, this, path);
            var com = new VfsBakedAsset_Common(db, bac, this, dir, null, path);

            dir._attachCom(com);

            return(dir);
        }