Check if results file exists before creating one

This commit is contained in:
Sandeep Somavarapu 2017-05-08 20:49:54 +02:00
Родитель 415afb15c6
Коммит 7266f38610
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -25,7 +25,9 @@ export class MongoCommands {
const selection = activeEditor.selection;
const script = MongoCommands.provideScriptAt(activeEditor.document, selection.start);
let uri = vscode.Uri.file(path.join(vscode.workspace.rootPath, 'result.json'));
uri = uri.with({ scheme: 'untitled' });
if (!fs.existsSync) {
uri = uri.with({ scheme: 'untitled' });
}
vscode.workspace.openTextDocument(uri)
.then(textDocument => vscode.window.showTextDocument(textDocument, vscode.ViewColumn.Two, true))
.then(editor => {