(fsPath?: string)
| 84 | } |
| 85 | |
| 86 | export async function createDir(fsPath?: string): Promise<string> { |
| 87 | fsPath ??= join(os.tmpdir(), rndName()); |
| 88 | await promisify(fs.mkdir)(fsPath); |
| 89 | return fsPath; |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Waits for the number of text editors in the current window to equal the |