(absolutePath: string)
| 989 | * @throws FileSystemAccessError for any other error. |
| 990 | */ |
| 991 | export async function createFile(absolutePath: string): Promise<void> { |
| 992 | await writeUtf8File(absolutePath, ""); |
| 993 | } |
| 994 | |
| 995 | /** |
| 996 | * Empties a directory by recursively removing all its content. If the |
no test coverage detected