Member Junction
    Preparing search index...

    Metadata for a storage object

    interface StorageObjectMetadata {
        cacheControl?: string;
        contentType: string;
        etag?: string;
        fullPath: string;
        isDirectory: boolean;
        lastModified: Date;
        name: string;
        path: string;
        size: number;
    }
    Index

    Properties

    cacheControl?: string

    Cache control header

    contentType: string

    MIME content type

    etag?: string

    ETag for caching

    fullPath: string

    The full path including name

    isDirectory: boolean

    Whether this is a directory

    lastModified: Date

    Last modification date

    name: string

    The name of the object (filename)

    path: string

    The path to the object (directory)

    size: number

    Size in bytes