AppFile

The `AppFile` entity.

Definition

TypeScript
interface AppFile {
  name: string;
  path: string;
  isDirectory: boolean;
  size: number | null;
}

Fields

FieldTypeNotes
namestringrequired — File or directory name (last path segment).
pathstringrequired — Full path within the app, relative to the app root.
isDirectorybooleanrequired — True when the entry is a directory, false for a file.
sizenumber | nullrequired — File size in bytes; null for directories.