( userId: string, projectId: string )
| 39 | |
| 40 | // Step 5: Content Directory within a Project's Cache Directory |
| 41 | export const getProjectContentDir = ( |
| 42 | userId: string, |
| 43 | projectId: string |
| 44 | ): string => { |
| 45 | return ensureDir(path.join(getProjectCacheDir(userId, projectId), 'content')); |
| 46 | }; |
| 47 | |
| 48 | // Updated function to get the full path to a specific file within the 'content' directory |
| 49 | export const getProjectContentPath = ( |
no test coverage detected