Hiyve Components - v1.0.0
    Preparing search index...

    Folder entry representing a directory in the file system.

    const folder: FolderEntry = {
    name: 'Recordings',
    path: '/Recordings',
    userId: 'user-456',
    isFolder: true,
    hasChildren: true
    };
    interface FolderEntry {
        hasChildren?: boolean;
        isFolder: true;
        name: string;
        path: string;
        roomName?: string;
        userId?: string;
    }
    Index

    Properties

    hasChildren?: boolean

    Whether folder contains subfolders or files

    isFolder: true

    Always true for folder entries

    name: string

    Display name of the folder

    path: string

    Full path to the folder

    roomName?: string

    Room name (for room-specific folders)

    userId?: string

    User ID of the folder owner (for user-created folders)