@squidcloud/client
    Preparing search index...

    Interface FileInDirectory

    Represents details of a file within a directory in the storage bucket.

    interface FileInDirectory {
        absoluteFilePathInBucket: string;
        filename: string;
        lastModified: Date;
        size: number;
    }
    Index

    Properties

    absoluteFilePathInBucket: string

    The absolute path of the file within the bucket.

    filename: string

    The name of the file.

    lastModified: Date

    The last modified timestamp of the file.

    size: number

    The size of the file in bytes.