Type Alias SpaceStatsResponse

type SpaceStatsResponse = {
    aggregateAppScopedFileSize: number;
    aggregateFileSize: number;
    aggregateInternalFileSize: number;
    directAppScopedFileCount: number;
    directFileCount: number;
    directFolderCount: number;
    directInternalFileCount: number;
    totalAppScopedFileCount: number;
    totalFileCount: number;
    totalFolderCount: number;
    totalInternalFileCount: number;
}
Index

Properties

aggregateAppScopedFileSize: number

The sum of the file sizes, in bytes, of all app-scoped data files that reside as direct and indirect children of the given folder and it's sub-folder hierarchy.

aggregateFileSize: number

The sum of the file sizes, in bytes, of all data files that reside as direct and indirect children of the given folder and it's sub-folder hierarchy.

aggregateInternalFileSize: number

The sum of the file sizes, in bytes, of all internal data files that reside as direct and indirect children of the given folder and it's sub-folder hierarchy.

directAppScopedFileCount: number

The number of app-scoped data files that reside as direct children of the given folder.

directFileCount: number

The number of data files that reside as direct children of the given folder.

directFolderCount: number

The number of sub-folders that reside as direct children of the given folder.

directInternalFileCount: number

The number of 'internal' data files (IE, those that are not visible to end users by default) that reside as direct children of the given folder.

totalAppScopedFileCount: number

The number of app-scoped data files that reside as direct and indirect children of the given folder and it's sub-folder hierarchy.

totalFileCount: number

The number of data files that reside as direct and indirect children of the given folder and it's sub-folder hierarchy.

totalFolderCount: number

The number of folders that reside as direct and indirect children of the given folder and it's sub-folder hierarchy.

totalInternalFileCount: number

The number of 'internal' data files (IE, those that are not visible to end users by default) that reside as direct and indirect children of the given folder and it's sub-folder hierarchy.