hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface representing a file system that extends multiple interfaces.

    interface ISGROFileSystem {
        CopyFile(fromPath: string, toPath: string): boolean;
        CreateDirectory(path: string): boolean;
        Delete(path: string): boolean;
        Exists(path: string): boolean;
        Find(dirPath: string, regEx: string): string[];
        FindRecurse(dirPath: string, regEx: string): any;
        GetDirectoryListing(dirPath: string): any;
        GetMessagePort(): any;
        GetVolumeInfo(path: string): any;
        GetVolumeList(): any;
        Match(path: string, pattern: string): any;
        Rename(fromPath: string, toPath: string): boolean;
        SetMessagePort(port: any): any;
        Stat(path: string): any;
    }

    Hierarchy (View Summary)

    Index

    Methods