MCPcopy Index your code
hub / github.com/simstudioai/sim / isExecutionFile

Function isExecutionFile

apps/sim/lib/uploads/contexts/execution/utils.ts:54–60  ·  view source on GitHub ↗
(file: UserFile)

Source from the content-addressed store, hash-verified

52 * Execution files have keys in format: execution/workspaceId/workflowId/executionId/filename
53 */
54export function isExecutionFile(file: UserFile): boolean {
55 if (!file.key) {
56 return false
57 }
58
59 return matchesExecutionFilePattern(file.key)
60}

Callers 1

downloadFileFromStorageFunction · 0.90

Calls 1

Tested by

no test coverage detected