Get file metadata by ID
import { getStorageFile } from "@cpod/sdk";const file = await getStorageFile("file-123");if (file) { console.log(`${file.filename} - ${file.contentType}`);} Copy
import { getStorageFile } from "@cpod/sdk";const file = await getStorageFile("file-123");if (file) { console.log(`${file.filename} - ${file.contentType}`);}
Get file metadata by ID