@tauri-apps/plugin-fs - v2.4.1
    Preparing search index...

    Interface DirEntry

    A disk entry which is either a file, a directory or a symlink.

    This is the result of the readDir.

    2.0.0

    interface DirEntry {
        name: string;
        isDirectory: boolean;
        isFile: boolean;
        isSymlink: boolean;
    }
    Index

    Properties

    name: string

    The name of the entry (file name with extension or directory name).

    isDirectory: boolean

    Specifies whether this entry is a directory or not.

    isFile: boolean

    Specifies whether this entry is a file or not.

    isSymlink: boolean

    Specifies whether this entry is a symlink or not.