# Type Alias: FileAction

```ts
type FileAction = 
  | "list"
  | "read"
  | "download"
  | "raw"
  | "exists"
  | "metadata"
  | "preview"
  | "upload"
  | "mkdir"
  | "delete";

```

Every action the files plugin can perform.
