MCPcopy
hub / github.com/webadderallorg/Recordly / removeTemporaryExportFile

Function removeTemporaryExportFile

electron/ipc/export/native-video.ts:1438–1448  ·  view source on GitHub ↗
(filePath: string | null | undefined)

Source from the content-addressed store, hash-verified

1436}
1437
1438export async function removeTemporaryExportFile(filePath: string | null | undefined) {
1439 if (!filePath) {
1440 return;
1441 }
1442
1443 try {
1444 await fs.rm(filePath, { force: true });
1445 } catch {
1446 // Ignore cleanup failures for temp export artifacts.
1447 }
1448}
1449
1450export function getNativeVideoExportSessionError(
1451 session: NativeVideoExportSession,

Callers 5

registerExportHandlersFunction · 0.90
probeNativeVideoEncoderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected