(userId: string, path: string, name: string)
| 91 | } |
| 92 | |
| 93 | static async delete(userId: string, path: string, name: string): Promise<boolean> { |
| 94 | return await deleteDirectoryOrFile(userId, path, name); |
| 95 | } |
| 96 | |
| 97 | static async searchNames( |
| 98 | userId: string, |
nothing calls this directly
no test coverage detected