Theia API Documentation v1.65.0
    Preparing search index...
    interface StatAndLink {
        stat: Stats;
        symbolicLink?: { dangling: boolean };
    }
    Index

    Properties

    Properties

    stat: Stats

    The stats of the file. If the file is a symbolic link, the stats will be of that target file and not the link itself. If the file is a symbolic link pointing to a non existing file, the stat will be of the link and the dangling flag will indicate this.

    symbolicLink?: { dangling: boolean }

    Will be provided if the resource is a symbolic link on disk. Use the dangling flag to find out if it points to a resource that does not exist on disk.