(
filePath: string | vscode.Uri,
)
| 73 | } |
| 74 | |
| 75 | export async function checkIfFileExists( |
| 76 | filePath: string | vscode.Uri, |
| 77 | ): Promise<boolean> { |
| 78 | return await checkIfFileOrDirectoryExists(filePath, vscode.FileType.File); |
| 79 | } |
| 80 | |
| 81 | export async function checkIfDirectoryExists( |
| 82 | directoryPath: string | vscode.Uri, |
no test coverage detected