microsoft / vscode

Visual Studio Code
https://code.visualstudio.com
MIT License
162.11k stars 28.51k forks source link

VS Code Find in Files not working (searching only in open files) #116637

Closed denish-kanabar closed 3 years ago

denish-kanabar commented 3 years ago

Don't what setting has changed or is it due to any recent update but suddenly VS code stopped showing result from all files (open or not opened) for 'find in files (ctrl+shift+F). It's really creating issue for me as I have huge code base. Can someone please help me are ASAP.

Screenshot Searchjpg

gjsjohnmurray commented 3 years ago

/needsMoreInfo including version and platform. Please also review the advice at https://github.com/microsoft/vscode/wiki/Search-Issues

Pasting a screenshot of your Search view here might also help.

denish-kanabar commented 3 years ago

Hello,

Please find detail of VS code. I am using windows 10. Also attaching result of search while I tried on same folder.

Version: 1.53.2 (user setup) Commit: 622cb03f7e070a9670c94bae1a45d78d7181fbd4 Date: 2021-02-11T11:48:04.245Z Electron: 11.2.1 Chrome: 87.0.4280.141 Node.js: 12.18.3 V8: 8.7.220.31-electron.0 OS: Windows_NT x64 10.0.18363

First snap where app.routing.ts file is not open so it didn't gave any result for BrowserModule ( I am using VS code for angular project) image

In second snap when file is open it shows result properly. image

Let me know if you need more information from my side.

lapprand commented 3 years ago

I can confirm this issue on my side.

I'm using WSL2 on windows Insider.

Version: 1.53.2 (user setup) Commit: 622cb03f7e070a9670c94bae1a45d78d7181fbd4 Date: 2021-02-11T11:48:04.245Z Electron: 11.2.1 Chrome: 87.0.4280.141 Node.js: 12.18.3 V8: 8.7.220.31-electron.0 OS: Windows_NT x64 10.0.21313

Here is the search log:

image

What I attempted here is to search for "menu" and I know for a fact this should return at least one result.

image

roblourens commented 3 years ago

Do any tips here help? https://github.com/microsoft/vscode/wiki/Search-Issues

denish-kanabar commented 3 years ago

Even if I do not use exclude files (list or pattern) i.e. when I allow VS code to search 100% all files in folder its not showing correct file unless its already open

For ref. excluded file I have kept it default have not changed /added anything so it should shows .ts files for search result. Also if anything conflicting in excluded file list then it should not include in result even if particular file is open at a time.

roblourens commented 3 years ago

Can you try toggling off the button to use your configured exclude patterns and ignore files (The button in the "Files to exclude" box)?

denish-kanabar commented 3 years ago

yes I tried already but no luck, with or without exclude files, result not showing correct result. Also I have not configured any files in exclude list, its all default setting.

lapprand commented 3 years ago

Do any tips here help? https://github.com/microsoft/vscode/wiki/Search-Issues

For me, not at all. That is also why I sent the search log above. No clue on why this is happening, but I have a feeling it started after the last update.

denish-kanabar commented 3 years ago

yes, I feel same. It was working earlier but recently it stopped.

roblourens commented 3 years ago

@lapprand do you get the same result with this? https://github.com/microsoft/vscode/issues/116637#issuecomment-780303797

Next step would be, you can find the line in the log that includes the exact command we ran with ripgrep, it starts with a path ending with /vscode-ripgrep/bin/rg. You can try running that exact command in a terminal. If there is actually a vscode bug, you will see the missing result. If there is something wrong with the options we pass to ripgrep, you won't.

lapprand commented 3 years ago

@roblourens Sorry for the delay. Indeed, I get the same result with that button toggled off.

About the command, I found it, I believe this is it:

image

However, I'm not sure I'm running it the right way. It's giving me a segmentaion fault.

$ /home/lapp/.vscode-server/bin/622cb03f7e070a9670c94bae1a45d78d7181fbd4/node_modules/vscode-ripgrep/bin/rg --hidden --ignore-case --no-ignore --follow --crlf --fixed-strings --no-config --no-ignore-global --json -- 'menu' '.' 

[1]    6751 segmentation fault   --hidden --ignore-case --no-ignore --follow --crlf --fixed-strings   --json
roblourens commented 3 years ago

You are running it in WSL right? That would be the problem. I assume that ctrl+P file search is broken too except for recently opened files.

Can you tell me more about the remote OS? The rg build has not changed in a few months.

Also, if you remove all the arguments to rg and just run it with --help does it segfault or produce any useful output?

lapprand commented 3 years ago

Yes, I'm using WSL 2.

Here is the uname -a:

Linux lappdesk 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

And here is the wsl version:

image

rg segfaults even with --help only:

$ /home/lapp/.vscode-server/bin/622cb03f7e070a9670c94bae1a45d78d7181fbd4/node_modules/vscode-ripgrep/bin/rg --help

[1]    7461 segmentation fault   --help
roblourens commented 3 years ago

@aeschli is there a recommended way to remove/kill the vscode server on a WSL remote so we can see if it works in a fresh install?

What do you get for file /home/lapp/.vscode-server/bin/622cb03f7e070a9670c94bae1a45d78d7181fbd4/node_modules/vscode-ripgrep/bin/rg?

I have the same sort of WSL2 remote, and it works for me...

rob@ROBLOURENS9C8C:~> uname -a
Linux ROBLOURENS9C8C 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
denish-kanabar commented 3 years ago

@lapprand Could you guide me where to find log file and how to get command to run? I am running VS code from Windows 10 stand alone machine

roblourens commented 3 years ago
denish-kanabar commented 3 years ago

Thanks roblourens Not sure I set it correct or not but with log at trace , I can see below information under Log(window) from output terminal. There are many more such entries. I tried to run VS as administrator but same result.

 2021-02-23 12:05:12.088] [renderer6] [trace] CommandService#executeCommand workbench.output.action.clearOutput
[2021-02-23 12:05:20.523] [renderer6] [trace] KeybindingService#dispatch Enter undefined
[2021-02-23 12:05:20.528] [renderer6] [trace] SearchService#search {"_reason":"searchView","folderQueries":[{"folder":{"$mid":1,"fsPath":"c:\\Project\\NEW3.0\\atos-studios-app\\src","_sep":1,"external":"file:///c%3A/Project/NEW3.0/atos-studios-app/src","path":"/c:/Project/NEW3.0/atos-studios-app/src","scheme":"file"},"excludePattern":{"**/.git":true,"**/.svn":true,"**/.hg":true,"**/CVS":true,"**/.DS_Store":true,"**/node_modules":true,"**/bower_components":true,"**/*.code-search":true},"fileEncoding":"utf8","disregardIgnoreFiles":false,"disregardGlobalIgnoreFiles":true,"ignoreSymlinks":false}],"usingSearchPaths":false,"onlyOpenEditors":false,"maxResults":10000,"type":2,"contentPattern":{"pattern":"router-outlet","isRegExp":false,"isCaseSensitive":false,"isWordMatch":false,"wordSeparators":"`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?"},"previewOptions":{"matchLines":1,"charsPerLine":1000},"usePCRE2":false}
[2021-02-23 12:05:20.532] [renderer6] [debug] SearchService#search provideTextSearchResults router-outlet, {"folder":"file:///c%3A/Project/NEW3.0/atos-studios-app/src","excludes":["**/.git","**/.svn","**/.hg","**/CVS","**/.DS_Store","**/node_modules","**/bower_components","**/*.code-search"],"includes":[],"useIgnoreFiles":true,"useGlobalIgnoreFiles":false,"followSymlinks":true,"encoding":"utf8","maxFileSize":17179869184,"maxResults":10000,"previewOptions":{"matchLines":1,"charsPerLine":1000},"usePCRE2":false}
[2021-02-23 12:05:20.532] [renderer6] [debug] SearchService#search c:\Users\A683273\AppData\Local\Programs\Microsoft VS Code\resources\app\node_modules.asar.unpacked\vscode-ripgrep\bin\rg.exe --hidden --ignore-case -g '!**/.git' -g '!**/.svn' -g '!**/.hg' -g '!**/CVS' -g '!**/.DS_Store' -g '!**/node_modules' -g '!**/bower_components' -g '!**/*.code-search' --max-filesize '17179869184' --no-ignore-parent --follow --crlf --fixed-strings --no-config --no-ignore-global --json -- 'router-outlet' '.'
 - cwd: c:\Project\NEW3.0\atos-studios-app\src
[2021-02-23 12:05:20.619] [renderer6] [debug] SearchService#search .\favicon.ico
[2021-02-23 12:05:20.619] [renderer6] [debug] SearchService#search : 
[2021-02-23 12:05:20.620] [renderer6] [debug] SearchService#search Access is denied. (os error 
[2021-02-23 12:05:20.620] [renderer6] [debug] SearchService#search 5
[2021-02-23 12:05:20.621] [renderer6] [debug] SearchService#search )
[2021-02-23 12:05:20.621] [renderer6] [debug] SearchService#search 

[2021-02-23 12:05:20.625] [renderer6] [debug] SearchService#search .\environments\environment.prod.ts
[2021-02-23 12:05:20.626] [renderer6] [debug] SearchService#search : 
[2021-02-23 12:05:20.627] [renderer6] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-23 12:05:20.627] [renderer6] [debug] SearchService#search .\assets\.gitkeep: 
[2021-02-23 12:05:20.627] [renderer6] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-23 12:05:20.628] [renderer6] [debug] SearchService#search .\app\app-routing.module.ts
[2021-02-23 12:05:20.628] [renderer6] [debug] SearchService#search : 
[2021-02-23 12:05:20.628] [renderer6] [debug] SearchService#search Access is denied. (os error 5)
[2021-02-23 12:05:20.629] [renderer6] [debug] SearchService#search 

[2021-02-23 12:05:20.629] [renderer6] [debug] SearchService#search .\index.html
[2021-02-23 12:05:20.629] [renderer6] [debug] SearchService#search : 
[2021-02-23 12:05:20.630] [renderer6] [debug] SearchService#search Access is denied.
[2021-02-23 12:05:20.630] [renderer6] [debug] SearchService#search  (os error 
[2021-02-23 12:05:20.631] [renderer6] [debug] SearchService#search 5
[2021-02-23 12:05:20.631] [renderer6] [debug] SearchService#search )
[2021-02-23 12:05:20.632] [renderer6] [debug] SearchService#search 

[2021-02-23 12:05:20.632] [renderer6] [debug] SearchService#search .\assets\js\ideation\businessmodel.js
[2021-02-23 12:05:20.632] [renderer6] [debug] SearchService#search : Access is denied. (os error 5)
lapprand commented 3 years ago

What do you get for file /home/lapp/.vscode-server/bin/622cb03f7e070a9670c94bae1a45d78d7181fbd4/node_modules/vscode-ripgrep/bin/rg?

@roblourens I get this:

image

denish-kanabar commented 3 years ago

what to give with rg ? I got below without any parameter

C:\Users\A683273\AppData\Local\Programs\Microsoft VS Code\resources\app\node_modules.asar.unpacked\vscode-ripgrep\bin>rg error: The following required arguments were not provided:

USAGE: rg [OPTIONS] PATTERN [PATH ...] rg [OPTIONS] [-e PATTERN ...] [-f PATTERNFILE ...] [PATH ...] rg [OPTIONS] --files [PATH ...] rg [OPTIONS] --type-list command | rg [OPTIONS] PATTERN For more information try --help
lapprand commented 3 years ago

I believe you should try getting the search command in one of your output panels and then execute it in your terminal.

roblourens commented 3 years ago

At this point it seems obvious that there are two separate issues, @lapprand could you open your own issue to continue investigating? But tbh I don't have a clue what the problem is. I suggest deleting the ~/.vscode-server/bin` directory in WSL so it will be reinstalled.

@denish-kanabar Access is denied. (os error 5) that definitely sounds like an issue. I assume your user has permissions to access these files? Is this a networked drive or anything else unusual? Can you share the rest of the logs from the output channel, that start with SearchService#search? You can also try running the full rg command which appears in the logs.

lapprand commented 3 years ago

@roblourens No need, I just ended up fixing it with a fresh Windows install. I wish I could have taken more time to investigate it but I do not have that time. Thank you for your time, though, and farewell!

roblourens commented 3 years ago

I assume that it was a bad download of that binary or something. Glad you got it working!

denish-kanabar commented 3 years ago

@roblourens Yes user has access to file and its normal hard drive. I have unchecked read-only attribute from folder where I have code and even tried with opening VS Code as an administrator but result is same. No success.

Please check if below is of any help.

[2021-02-25 20:01:27.970] [renderer3] [trace] SearchService#search {"_reason":"searchView","folderQueries":[{"folder":{"$mid":1,"fsPath":"c:\\Project\\NEW3.0\\atos-studios-app","_sep":1,"external":"file:///c%3A/Project/NEW3.0/atos-studios-app","path":"/c:/Project/NEW3.0/atos-studios-app","scheme":"file"},"fileEncoding":"utf8","disregardIgnoreFiles":true,"disregardGlobalIgnoreFiles":true,"ignoreSymlinks":false}],"usingSearchPaths":false,"onlyOpenEditors":false,"maxResults":10000,"type":2,"contentPattern":{"pattern":"BrowserModule","isRegExp":false,"isCaseSensitive":false,"isWordMatch":false,"wordSeparators":"`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?"},"previewOptions":{"matchLines":1,"charsPerLine":1000},"usePCRE2":false,"userDisabledExcludesAndIgnoreFiles":true}
[2021-02-25 20:01:30.681] [renderer3] [debug] SearchService#search provideTextSearchResults BrowserModule, {"folder":"file:///c%3A/Project/NEW3.0/atos-studios-app","excludes":[],"includes":[],"useIgnoreFiles":false,"useGlobalIgnoreFiles":false,"followSymlinks":true,"encoding":"utf8","maxFileSize":17179869184,"maxResults":10000,"previewOptions":{"matchLines":1,"charsPerLine":1000},"usePCRE2":false}
[2021-02-25 20:01:30.702] [renderer3] [debug] SearchService#search c:\Users\A683273\AppData\Local\Programs\Microsoft VS Code\resources\app\node_modules.asar.unpacked\vscode-ripgrep\bin\rg.exe --hidden --ignore-case --max-filesize '17179869184' --no-ignore --follow --crlf --fixed-strings --no-config --no-ignore-global --json -- 'BrowserModule' '.'
 - cwd: c:\Project\NEW3.0\atos-studios-app
[2021-02-25 20:01:32.244] [renderer3] [debug] SearchService#search .\.browserslistrc: 
[2021-02-25 20:01:32.245] [renderer3] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-25 20:01:32.265] [renderer3] [debug] SearchService#search .\.editorconfig: Access is denied.
[2021-02-25 20:01:32.269] [renderer3] [debug] SearchService#search  (os error 5)

[2021-02-25 20:01:32.329] [renderer3] [debug] SearchService#search .\.gitignore: 
[2021-02-25 20:01:32.329] [renderer3] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-25 20:01:32.464] [renderer3] [debug] SearchService#search .\angular.json: 
[2021-02-25 20:01:32.464] [renderer3] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-25 20:01:32.497] [renderer3] [debug] SearchService#search .\package-lock.json: Access is denied. (os error 
[2021-02-25 20:01:32.498] [renderer3] [debug] SearchService#search 5)

[2021-02-25 20:01:32.501] [renderer3] [debug] SearchService#search .\package.json: 
[2021-02-25 20:01:32.543] [renderer3] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-25 20:01:32.590] [renderer3] [debug] SearchService#search .\README.md: Access is denied. (os error 
[2021-02-25 20:01:32.590] [renderer3] [debug] SearchService#search 5)

[2021-02-25 20:01:32.623] [renderer3] [debug] SearchService#search .\tsconfig.app.json: 
[2021-02-25 20:01:32.624] [renderer3] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-25 20:01:32.658] [renderer3] [debug] SearchService#search .\tsconfig.json: Access is denied.
[2021-02-25 20:01:32.659] [renderer3] [debug] SearchService#search  (os error 5)

[2021-02-25 20:01:32.701] [renderer3] [debug] SearchService#search .\tsconfig.spec.json: 
[2021-02-25 20:01:32.701] [renderer3] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-25 20:01:32.793] [renderer3] [debug] SearchService#search .\src\favicon.ico: 
[2021-02-25 20:01:32.794] [renderer3] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-25 20:01:32.801] [renderer3] [debug] SearchService#search .\tslint.json: Access is denied. (os error 
[2021-02-25 20:01:32.801] [renderer3] [debug] SearchService#search 5)

[2021-02-25 20:01:32.816] [renderer3] [debug] SearchService#search .\src\index.html: Access is denied.
[2021-02-25 20:01:32.816] [renderer3] [debug] SearchService#search  (os error 5)

[2021-02-25 20:01:32.958] [renderer3] [debug] SearchService#search .\src\main.ts: 
[2021-02-25 20:01:32.958] [renderer3] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-25 20:01:33.075] [renderer3] [debug] SearchService#search .\src\polyfills.ts: 
[2021-02-25 20:01:33.076] [renderer3] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-25 20:01:33.201] [renderer3] [debug] SearchService#search .\src\styles.css: Access is denied. (os error 5)

[2021-02-25 20:01:33.206] [renderer3] [trace] MainThreadTimeline#emitChangeEvent: id=git-history, uri=undefined
[2021-02-25 20:01:33.401] [renderer3] [debug] SearchService#search .\src\test.ts: Access is denied. (os error 
[2021-02-25 20:01:33.401] [renderer3] [debug] SearchService#search 5)

[2021-02-25 20:02:29.984] [renderer3] [trace] SearchService#search: 61715ms
[2021-02-25 20:02:29.984] [renderer3] [trace] SearchService#searchError: Canceled

[2021-02-25 20:02:52.121] [renderer3] [trace] SearchService#search {"_reason":"searchView","folderQueries":[{"folder":{"$mid":1,"fsPath":"c:\\Project\\NEW3.0\\atos-studios-app","_sep":1,"external":"file:///c%3A/Project/NEW3.0/atos-studios-app","path":"/c:/Project/NEW3.0/atos-studios-app","scheme":"file"},"fileEncoding":"utf8","disregardIgnoreFiles":true,"disregardGlobalIgnoreFiles":true,"ignoreSymlinks":false}],"usingSearchPaths":false,"onlyOpenEditors":false,"maxResults":10000,"type":2,"contentPattern":{"pattern":"BrowserModule","isRegExp":false,"isCaseSensitive":false,"isWordMatch":false,"wordSeparators":"`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?"},"previewOptions":{"matchLines":1,"charsPerLine":1000},"usePCRE2":false,"userDisabledExcludesAndIgnoreFiles":true}
[2021-02-25 20:02:52.124] [renderer3] [debug] SearchService#search provideTextSearchResults BrowserModule, {"folder":"file:///c%3A/Project/NEW3.0/atos-studios-app","excludes":[],"includes":[],"useIgnoreFiles":false,"useGlobalIgnoreFiles":false,"followSymlinks":true,"encoding":"utf8","maxFileSize":17179869184,"maxResults":10000,"previewOptions":{"matchLines":1,"charsPerLine":1000},"usePCRE2":false}
[2021-02-25 20:02:52.124] [renderer3] [debug] SearchService#search c:\Users\A683273\AppData\Local\Programs\Microsoft VS Code\resources\app\node_modules.asar.unpacked\vscode-ripgrep\bin\rg.exe --hidden --ignore-case --max-filesize '17179869184' --no-ignore --follow --crlf --fixed-strings --no-config --no-ignore-global --json -- 'BrowserModule' '.'
 - cwd: c:\Project\NEW3.0\atos-studios-app
[2021-02-25 20:02:52.373] [renderer3] [debug] SearchService#search .\.browserslistrc: 
[2021-02-25 20:02:52.374] [renderer3] [debug] SearchService#search Access is denied. (os error 5)

[2021-02-25 20:02:52.374] [renderer3] [debug] SearchService#search .\.editorconfig: Access is denied. (os error 
[2021-02-25 20:02:52.375] [renderer3] [debug] SearchService#search 5)
roblourens commented 3 years ago

Could you try running the exact rg.exe command manually in your workspace folder (starts with c:\Users\A683273\AppData\Local\Programs\Microsoft VS Code\resources\app\node_modules.asar.unpacked\vscode-ripgrep\bin\rg.exe) to see if you get any results or errors? If you get the errors, you can also try adding the --trace flag

denish-kanabar commented 3 years ago

When I ran command it didn't do anything. No error shown.. Not in logs also. Do I need to supply any argument/parameter with rg.exe?

Below output shown in diff. logs Log(window)

[2021-02-26 08:32:09.364] [renderer3] [trace] IPty#resize 126 13 [2021-02-26 08:32:11.789] [renderer3] [trace] IPty#write 3 characters [2021-02-26 08:32:11.795] [renderer3] [trace] KeybindingService#dispatch UpArrow undefined [2021-02-26 08:32:13.183] [renderer3] [trace] IPty#write 1 characters [2021-02-26 08:32:24.576] [renderer3] [trace] KeybindingService#dispatch Ctrl+C editor.action.clipboardCopyAction [2021-02-26 08:32:24.576] [renderer3] [trace] CommandService#executeCommand editor.action.clipboardCopyAction [2021-02-26 08:32:45.577] [renderer3] [trace] [text file model] load() - enter file:///c:/Project/NEW3.0/atos-studios-app/dist/atos-studios-app/main.js.map [2021-02-26 08:32:45.577] [renderer3] [trace] [text file model] loadFromFile() file:///c:/Project/NEW3.0/atos-studios-app/dist/atos-studios-app/main.js.map

Log(Shared) [2021-02-26 08:32:20.703] [sharedprocess] [trace] ExtensionManagementService.refreshReportedCache [2021-02-26 08:32:20.703] [sharedprocess] [trace] RequestService#request https://az764295.vo.msecnd.net/extensions/marketplace.json [2021-02-26 08:32:20.749] [sharedprocess] [trace] ExtensionManagementService.refreshReportedCache - got 6 reported extensions from service [2021-02-26 08:32:20.750] [sharedprocess] [trace] Started scanning user extensions [2021-02-26 08:32:20.829] [sharedprocess] [trace] Scanned user extensions: 7 [2021-02-26 08:32:21.081] [sharedprocess] [trace] Started scanning user extensions [2021-02-26 08:32:21.102] [sharedprocess] [trace] Started scanning user extensions [2021-02-26 08:32:21.103] [sharedprocess] [trace] Started scanning user extensions [2021-02-26 08:32:21.115] [sharedprocess] [trace] Scanned user extensions: 7 [2021-02-26 08:32:21.142] [sharedprocess] [trace] Scanned user extensions: 7 [2021-02-26 08:32:21.152] [sharedprocess] [trace] Scanned user extensions: 7 [2021-02-26 08:32:25.105] [sharedprocess] [trace] Started scanning user extensions [2021-02-26 08:32:25.111] [sharedprocess] [trace] Scanned user extensions: 7

Log(Extension Host) [2021-02-26 08:31:55.909] [exthost] [trace] [DiagnosticCollection] change many (extension, owner, uris) vscode.testing-editor-contributions _generated_diagnostic_collectionname#0 [[{"$mid":1,"fsPath":"sharedLog","_sep":1,"external":"output:sharedLog","path":"sharedLog","scheme":"output"},[]]] [2021-02-26 08:32:04.086] [exthost] [trace] [DiagnosticCollection] change many (extension, owner, uris) vscode.extension-editing extension-editing [[{"$mid":1,"fsPath":"extHostLog","_sep":1,"external":"output:extHostLog","path":"extHostLog","scheme":"output"},null]] [2021-02-26 08:32:04.086] [exthost] [trace] [DiagnosticCollection] change many (extension, owner, uris) vscode.testing-editor-contributions _generated_diagnostic_collectionname#0 [[{"$mid":1,"fsPath":"extHostLog","_sep":1,"external":"output:extHostLog","path":"extHostLog","scheme":"output"},[]]] [2021-02-26 08:32:09.292] [exthost] [trace] [DiagnosticCollection] change many (extension, owner, uris) vscode.testing-editor-contributions _generated_diagnostic_collectionname#0 [[{"$mid":1,"fsPath":"rendererLog","_sep":1,"external":"output:rendererLog","path":"rendererLog","scheme":"output"},[]]]

roblourens commented 3 years ago

You ran it in the terminal right? It should produce some output at least. This command from the log above should have all the arguments you need

c:\Users\A683273\AppData\Local\Programs\Microsoft VS Code\resources\app\node_modules.asar.unpacked\vscode-ripgrep\bin\rg.exe --hidden --ignore-case --max-filesize '17179869184' --no-ignore --follow --crlf --fixed-strings --no-config --no-ignore-global --json -- 'BrowserModule' '.'
denish-kanabar commented 3 years ago

when I ran below command on terminal it gave below output and output file attached with this reply

PS C:\Project\NEW3.0\atos-studios-app> c:\Users\A683273\AppData\Local\Programs\'Microsoft VS Code'\resources\app\node_modules.asar.unpacked\vscode-ripgrep\bin\rg.exe --hidden --ignore-case -g '!**/.git' -g '!**/.svn' -g '!**/.hg' -g '!**/CVS' -g '!**/.DS_Store' -g '!**/node_modules' -g '!**/bower_components' -g '!**/*.code-search' --max-filesize '17179869184' --no-ignore-parent --follow --crlf --fixed-strings --no-config --no-ignore-global --json -- 'BrowserModule' '.' > c:\project\OUTPUT.txt

.\.browserslistrc: Access is denied. (os error 5)
.\.editorconfig: Access is denied. (os error 5)
.\.gitignore: Access is denied. (os error 5)
.\angular.json: Access is denied. (os error 5)
.\package-lock.json: Access is denied. (os error 5)
.\e2e\protractor.conf.js: Access is denied. (os error 5)
.\.vscode\settings.json: Access is denied. (os error 5)
.\package.json: Access is denied. (os error 5)
.\dist\atos-studios-app\favicon.ico: Access is denied. (os error 5)
.\e2e\tsconfig.json: Access is denied. (os error 5)
.\README.md: Access is denied. (os error 5)
.\e2e\src\app.e2e-spec.ts: Access is denied. (os error 5)
.\tsconfig.app.json: Access is denied. (os error 5)
.\e2e\src\app.po.ts: Access is denied. (os error 5)
.\src\favicon.ico: Access is denied. (os error 5)
.\src\assets\.gitkeep: Access is denied. (os error 5)
.\tsconfig.json: Access is denied. (os error 5)
.\src\index.html: Access is denied. (os error 5)
.\tsconfig.spec.json: Access is denied. (os error 5)
.\src\main.ts: Access is denied. (os error 5)
.\src\assets\js\ideation\businessmodel.js: Access is denied. (os error 5)
.\tslint.json: Access is denied. (os error 5)
.\src\polyfills.ts: Access is denied. (os error 5)
.\src\assets\js\ideation\gantt.js: Access is denied. (os error 5)
.\src\assets\js\core\bootstrap-material-design.min.js: Access is denied. (os error 5)
.\src\assets\img\apple-icon.png: Access is denied. (os error 5)
.\src\styles.css: Access is denied. (os error 5)
.\src\assets\js\core\bootstrap-toggle.js: Access is denied. (os error 5)
.\src\assets\js\ideation\ideaboard.js: Access is denied. (os error 5)
.\src\assets\js\core\bootstrap2-toggle.js: Access is denied. (os error 5)
.\src\test.ts: Access is denied. (os error 5)
.\src\assets\js\ideation\jsmind.draggable.js: Access is denied. (os error 5)
.\src\assets\img\atos-logo.png: Access is denied. (os error 5)
.\src\assets\js\core\jquery.min.js: Access is denied. (os error 5)
.\src\assets\js\ideation\jsmind.js: Access is denied. (os error 5)
.\src\assets\css\ideation\ideaboard.js: Access is denied. (os error 5)
.\src\assets\js\core\material-dashboard.min.js: Access is denied. (os error 5)
.\src\assets\img\bi-ucases.png: Access is denied. (os error 5)
.\src\assets\js\ideation\jsmind.screenshot.js: Access is denied. (os error 5)
.\src\assets\css\ideation\jsmind.css: Access is denied. (os error 5)
.\src\assets\js\core\material-kit.js: Access is denied. (os error 5)
.\src\assets\img\bmodel.png: Access is denied. (os error 5)
.\src\assets\js\ideation\mindmap.js: Access is denied. (os error 5)
.\src\assets\css\ideation\sweetalert2.min.css: Access is denied. (os error 5)
.\src\assets\js\core\moment.js: Access is denied. (os error 5)
.\src\assets\img\brainstorming.png: Access is denied. (os error 5)
.\src\assets\js\ideation\planner.js: Access is denied. (os error 5)
.\src\assets\css\ideation\vis-timeline-graph2d.css: Access is denied. (os error 5)
.\src\assets\js\core\popper.min.js: Access is denied. (os error 5)
.\src\assets\img\businesscanvas.png: Access is denied. (os error 5)
.\src\assets\js\ideation\vis-timeline-graph2d.min.js: Access is denied. (os error 5)
.\src\assets\css\ideation\vis-timeline-graph2d.min.css: Access is denied. (os error 5)
.\src\assets\js\core\studios.js: Access is denied. (os error 5)
.\src\assets\img\businessmodel.png: Access is denied. (os error 5)
.\src\assets\js\ideation\workspace.js: Access is denied. (os error 5)
.\src\assets\css\ideation\vis-timeline-graph2d_old.css: Access is denied. (os error 5)
.\src\assets\js\core\summernote.min.css: Access is denied. (os error 5)
.\src\assets\img\cocreation.png: Access is denied. (os error 5)
.\src\assets\css\core\balloontooltip.css: Access is denied. (os error 5)
.\src\environments\environment.prod.ts: Access is denied. (os error 5)
.\src\assets\img\designthinking.png: Access is denied. (os error 5)
.\src\assets\js\core\summernote.min.js: Access is denied. (os error 5)
.\src\assets\css\core\bootstrap-toggle.css: Access is denied. (os error 5)
.\src\environments\environment.ts: Access is denied. (os error 5)
.\src\assets\img\empathymap.png: Access is denied. (os error 5)
.\src\assets\js\core\sweetalert2.min.js: Access is denied. (os error 5)
.\src\assets\img\graph-ucases.png: Access is denied. (os error 5)
.\src\assets\js\core\workspace.js: Access is denied. (os error 5)
.\src\app\app-routing.module.ts: Access is denied. (os error 5)
.\src\assets\css\core\bootstrap2-toggle.css: Access is denied. (os error 5)
.\src\assets\img\homebg.jpg: Access is denied. (os error 5)
.\src\app\app.component.css: Access is denied. (os error 5)
.\src\assets\css\core\hexagonal.css: Access is denied. (os error 5)
.\src\assets\img\ideaboard.png: Access is denied. (os error 5)
.\src\app\app.component.html: Access is denied. (os error 5)
.\src\assets\css\core\material-dashboard.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\ideation\businessmodel.js: Access is denied. (os error 5)
.\src\assets\img\jmap.png: Access is denied. (os error 5)
.\src\app\app.component.spec.ts: Access is denied. (os error 5)
.\src\assets\css\core\material-dashboard.min.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\ideation\gantt.js: Access is denied. (os error 5)
.\src\assets\img\kboard.png: Access is denied. (os error 5)
.\src\app\app.component.ts: Access is denied. (os error 5)
.\src\assets\css\core\material-kit.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\ideation\ideaboard.js: Access is denied. (os error 5)
.\src\assets\img\leancanvas.png: Access is denied. (os error 5)
.\src\app\app.module.ts: Access is denied. (os error 5)
.\src\assets\css\core\studios.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\ideation\jsmind.draggable.js: Access is denied. (os error 5)
.\src\assets\img\logo-white.png: Access is denied. (os error 5)
.\src\app\regular-access\regular-access-routing.module.ts: Access is denied. (os error 5)
.\src\app\services\auth.service.ts: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\ideation\jsmind.js: Access is denied. (os error 5)
.\src\assets\img\mindmap.png: Access is denied. (os error 5)
.\src\app\regular-access\regular-access.component.css: Access is denied. (os error 5)
.\src\app\services\collaboration.service.ts: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\ideation\jsmind.screenshot.js: Access is denied. (os error 5)
.\src\assets\img\ml-ucases.png: Access is denied. (os error 5)
.\src\app\regular-access\regular-access.component.html: Access is denied. (os error 5)
.\src\app\services\data.service.ts: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\ideation\mindmap.js: Access is denied. (os error 5)
.\src\assets\img\persona.png: Access is denied. (os error 5)
.\src\app\regular-access\regular-access.component.ts: Access is denied. (os error 5)
.\src\app\services\document.service.ts: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\ideation\planner.js: Access is denied. (os error 5)
.\src\assets\img\prototyping.png: Access is denied. (os error 5)
.\src\app\regular-access\regular-access.module.ts: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\ideation\vis-timeline-graph2d.min.js: Access is denied. (os error 5)
.\src\app\services\feedback.service.ts: Access is denied. (os error 5)
.\src\assets\img\pushpin.png: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\workspaces-routing.module.ts: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\ideation\workspace.js: Access is denied. (os error 5)
.\src\app\services\ideation.service.ts: Access is denied. (os error 5)
.\src\assets\img\roadmap.png: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\workspaces.component.css: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\edit-workspace\edit-workspace.component.css: Access is denied. (os error 5)
.\src\app\services\utility.service.ts: Access is denied. (os error 5)
.\src\assets\img\sbar1.png: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\workspaces.component.html: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\edit-workspace\edit-workspace.component.html: Access is denied. (os error 5)
.\src\app\services\workspace.service.ts: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\edit-workspace\edit-workspace.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\workspaces.component.ts: Access is denied. (os error 5)
.\src\assets\img\sidebar-1.jpg: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\doc-upload-view\doc-upload-view.component.css: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\workspaces.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\create-workspace\create-workspace.component.css: Access is denied. (os error 5)
.\src\assets\img\strathack.png: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\doc-upload-view\doc-upload-view.component.html: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\create-iteration\create-iteration.component.css: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\create-workspace\create-workspace.component.html: Access is denied. (os error 5)
.\src\assets\img\studio-prototyping_webapp.png: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\doc-upload-view\doc-upload-view.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\create-iteration\create-iteration.component.html: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\create-workspace\create-workspace.component.ts: Access is denied. (os error 5)
.\src\assets\img\studio_brainstorming.png: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\add-user\add-user.component.css: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\create-iteration\create-iteration.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\tools-gallery\tools-gallery-routing.module.ts: Access is denied. (os error 5)
.\src\assets\img\studio_businessmodel.png: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\add-user\add-user.component.html: Access is denied. (os error 5)
.\src\app\regular-access\static-contents\static-contents.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\tools-gallery\tools-gallery.component.css: Access is denied. (os error 5)
.\src\assets\img\studio_businessmodelcanvas.png: Access is denied. (os error 5)
.\src\app\regular-access\workspaces\add-user\add-user.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\static-contents\tools\tools.component.css: Access is denied. (os error 5)
.\src\app\regular-access\tools-gallery\tools-gallery.component.html: Access is denied. (os error 5)
.\src\assets\img\studio_cocreation.png: Access is denied. (os error 5)
.\src\app\regular-access\static-contents\studios\studios.component.css: Access is denied. (os error 5)
.\src\app\regular-access\static-contents\tools\tools.component.html: Access is denied. (os error 5)
.\src\app\regular-access\tools-gallery\tools-gallery.component.spec.ts: Access is denied. (os error 5)
.\src\app\regular-access\static-contents\studios\studios.component.html: Access is denied. (os error 5)
.\src\assets\img\studio_design.png: Access is denied. (os error 5)
.\src\app\regular-access\static-contents\tools\tools.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\tools-gallery\tools-gallery.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\static-contents\studios\studios.component.ts: Access is denied. (os error 5)
.\src\assets\img\studio_designthinking.png: Access is denied. (os error 5)
.\src\app\regular-access\static-contents\home\home.component.css: Access is denied. (os error 5)
.\src\app\regular-access\tools-gallery\tools-gallery.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\platform-solutions\platform-solutions-routing.module.ts: Access is denied. (os error 5)
.\src\assets\img\studio_empathymap.png: Access is denied. (os error 5)
.\src\app\regular-access\static-contents\home\home.component.html: Access is denied. (os error 5)
.\src\app\regular-access\modal-container\modal-container.component.css: Access is denied. (os error 5)
.\src\app\regular-access\platform-solutions\platform-solutions.component.css: Access is denied. (os error 5)
.\src\assets\img\studio_homebg.jpg: Access is denied. (os error 5)
.\src\app\regular-access\static-contents\home\home.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\modal-container\modal-container.component.html: Access is denied. (os error 5)
.\src\app\regular-access\platform-solutions\platform-solutions.component.html: Access is denied. (os error 5)
.\src\app\regular-access\modal-container\modal-container.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\menu\menu.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\platform-solutions\platform-solutions.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\menu\footer\footer.component.css: Access is denied. (os error 5)
.\src\assets\img\studio_ideaboard.png: Access is denied. (os error 5)
.\src\app\regular-access\menu\header\header.component.css: Access is denied. (os error 5)
.\src\app\regular-access\platform-solutions\platform-solutions.module.ts: Access is denied. (os error 5)
.\src\assets\img\studio_ideation.png: Access is denied. (os error 5)
.\src\app\regular-access\menu\footer\footer.component.html: Access is denied. (os error 5)
.\src\app\regular-access\menu\header\header.component.html: Access is denied. (os error 5)
.\src\assets\img\studio_journeymap.png: Access is denied. (os error 5)
.\src\app\regular-access\menu\footer\footer.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\menu\header\header.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\planner\planner-routing.module.ts: Access is denied. (os error 5)
.\src\assets\img\studio_leanbusinesscanvas.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\mindmap-canvas\mindmap-canvas-routing.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideation-canvas\ideation-canvas.component.css: Access is denied. (os error 5)
.\src\app\regular-access\ideation\planner\planner.component.css: Access is denied. (os error 5)
.\src\assets\img\studio_mindmapping.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\mindmap-canvas\mindmap-canvas.component.css: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideation-canvas\ideation-canvas.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\planner\planner.component.html: Access is denied. (os error 5)
.\src\assets\img\studio_persona.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\mindmap-canvas\mindmap-canvas.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideation-canvas\ideation-canvas.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\planner\planner.component.spec.ts: Access is denied. (os error 5)
.\src\assets\img\studio_prototyping.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\mindmap-canvas\mindmap-canvas.component.spec.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\planner\planner.component.ts: Access is denied. (os error 5)
.\src\assets\img\studio_prototyping_analytics.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\ideaboard-canvas-routing.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\planner\planner.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\mindmap-canvas\mindmap-canvas.component.ts: Access is denied. (os error 5)
.\src\assets\img\studio_prototyping_chatbot.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\ideaboard-canvas.component.css: Access is denied. (os error 5)
.\src\app\regular-access\ideation\mindmap-canvas\mindmap-canvas.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\idea-board-preview\idea-board-preview.component.css: Access is denied. (os
error 5)
.\src\assets\img\studio_prototyping_dsml.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\ideaboard-canvas.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\idea-board-preview\idea-board-preview.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\mindmap-canvas\print-export\print-export.component.css: Access is denied. (os error 5)
.\src\assets\img\studio_prototyping_eventsdata.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\ideaboard-canvas.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\idea-board-preview\idea-board-preview.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\mindmap-canvas\print-export\print-export.component.html: Access is denied. (os error 5)
.\src\assets\img\studio_prototyping_graphdata.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\ideaboard-canvas.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\mindmap-canvas\print-export\print-export.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\idea-board\idea-board.component.css: Access is denied. (os error 5)
.\src\assets\img\studio_prototyping_mobileapp.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\guest-idea-board\guest-idea-board.component.css: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\vote-config\vote-config.component.css: Access is denied. (os error 5)
.\src\assets\img\studio_prototyping_webapp.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\idea-board\idea-board.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\guest-idea-board\guest-idea-board.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\vote-config\vote-config.component.html: Access is denied. (os error 5)
.\src\assets\img\studio_roadmap.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\idea-board\idea-board.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\guest-idea-board\guest-idea-board.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\ideaboard-canvas\vote-config\vote-config.component.ts: Access is denied. (os error 5)
.\src\assets\img\studio_rollout.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-canvas-routing.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\auth\auth.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\bm-asset-list\bm-asset-list.component.css: Access is denied. (os error 5)
.\src\assets\img\studio_solutionthinking.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-canvas.component.css: Access is denied. (os error 5)
.\src\app\regular-access\auth\user-profile\user-profile.component.css: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\bm-asset-list\bm-asset-list.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-canvas.component.html: Access is denied. (os error 5)
.\src\assets\img\studio_strathack.png: Access is denied. (os error 5)
.\src\app\regular-access\auth\user-profile\user-profile.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\bm-asset-list\bm-asset-list.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-canvas.component.ts: Access is denied. (os error 5)
.\src\assets\img\studio_valuepropcanvas.png: Access is denied. (os error 5)
.\src\app\regular-access\auth\user-profile\user-profile.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\auth\user-activation\user-activation.component.css: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-canvas.module.ts: Access is denied. (os error 5)
.\src\assets\img\studio_visualmodeling.png: Access is denied. (os error 5)
.\src\app\regular-access\auth\register\register.component.css: Access is denied. (os error 5)
.\src\app\regular-access\auth\user-activation\user-activation.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\value-prop-canvas\value-prop-canvas-routing.module.ts: Access is denied. (os error 5)
.\src\assets\img\studio_whystudios.png: Access is denied. (os error 5)
.\src\app\regular-access\auth\register\register.component.html: Access is denied. (os error 5)
.\src\app\regular-access\auth\user-activation\user-activation.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\value-prop-canvas\value-prop-canvas.component.css: Access is denied. (os error 5)
.\src\assets\img\tool-businessmodel.png: Access is denied. (os error 5)
.\src\app\regular-access\auth\register\register.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\lean-canvas\lean-canvas-routing.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\value-prop-canvas\value-prop-canvas.component.html: Access is denied. (os error 5)
.\src\assets\img\tool-ideation.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-model-canvas\business-model-canvas-routing.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\lean-canvas\lean-canvas.component.css: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\value-prop-canvas\value-prop-canvas.component.spec.ts: Access is denied. (os error 5)
.\src\assets\img\tool-journeymap.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-model-canvas\business-model-canvas.component.css: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\lean-canvas\lean-canvas.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\value-prop-canvas\value-prop-canvas.component.ts: Access is denied. (os error 5)
.\src\assets\img\tool-kanban.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-model-canvas\business-model-canvas.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\value-prop-canvas\value-prop-canvas.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\lean-canvas\lean-canvas.component.spec.ts: Access is denied. (os error 5)
.\src\assets\img\tool-mindmap.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-model-canvas\business-model-canvas.component.spec.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\lean-canvas\lean-canvas.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\auth\password-reset\password-reset.component.css: Access is denied. (os error 5)
.\src\assets\img\tool-persona.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-model-canvas\business-model-canvas.component.ts: Access is denied.
(os error 5)
.\src\app\regular-access\ideation\business-canvas\lean-canvas\lean-canvas.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\auth\password-reset\password-reset.component.html: Access is denied. (os error 5)
.\src\assets\img\tool-prototyping.png: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-model-canvas\business-model-canvas.module.ts: Access is denied. (os error 5)
.\src\app\regular-access\auth\login\login.component.css: Access is denied. (os error 5)
.\src\app\regular-access\auth\password-reset\password-reset.component.ts: Access is denied. (os error 5)
.\src\assets\img\tool-reuse.png: Access is denied. (os error 5)
.\src\app\regular-access\auth\login\login.component.html: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-model-canvas\export-canvas\export-canvas.component.css: Access is denied. (os error 5)
.\src\app\regular-access\auth\invite-user\invite-user.component.css: Access is denied. (os error 5)
.\src\assets\img\tool-roadmap.png: Access is denied. (os error 5)
.\src\app\regular-access\auth\login\login.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-model-canvas\export-canvas\export-canvas.component.html: Access is
denied. (os error 5)
.\src\assets\img\tool-strathack.png: Access is denied. (os error 5)
.\src\app\regular-access\auth\invite-user\invite-user.component.html: Access is denied. (os error 5)
.\src\app\regular-access\auth\feedback\feedback.component.css: Access is denied. (os error 5)
.\src\app\regular-access\ideation\business-canvas\business-model-canvas\export-canvas\export-canvas.component.ts: Access is denied. (os error 5)
.\src\assets\img\tool-visualmodel.png: Access is denied. (os error 5)
.\src\app\regular-access\auth\invite-user\invite-user.component.ts: Access is denied. (os error 5)
.\src\app\regular-access\auth\feedback\feedback.component.html: Access is denied. (os error 5)
.\src\app\guest-access\guest-access-routing.module.ts: Access is denied. (os error 5)
.\src\assets\img\ts-ucases.png: Access is denied. (os error 5)
.\src\app\dtos\artifact.ts: Access is denied. (os error 5)
.\src\app\regular-access\auth\feedback\feedback.component.ts: Access is denied. (os error 5)
.\src\app\guest-access\guest-access.component.css: Access is denied. (os error 5)
.\src\assets\img\valuepropcanvas.png: Access is denied. (os error 5)
.\src\app\dtos\asset.ts: Access is denied. (os error 5)
.\src\app\guest-access\guest-access.component.html: Access is denied. (os error 5)
.\src\assets\img\visualdesign.png: Access is denied. (os error 5)
.\src\app\dtos\bm-canvas.ts: Access is denied. (os error 5)
.\src\app\guest-access\guest-access.component.ts: Access is denied. (os error 5)
.\src\assets\img\visualmodeling.png: Access is denied. (os error 5)
.\src\app\dtos\bmcAssetRef.ts: Access is denied. (os error 5)
.\src\app\guest-access\guest-access.module.ts: Access is denied. (os error 5)
.\src\app\constants\common.ts: Access is denied. (os error 5)
.\src\app\dtos\customer.ts: Access is denied. (os error 5)
.\src\app\guest-access\vote-ideaboard\vote-ideaboard.component.css: Access is denied. (os error 5)
.\src\app\constants\Ideation.ts: Access is denied. (os error 5)
.\src\app\dtos\guestLink.ts: Access is denied. (os error 5)
.\src\app\guest-access\vote-ideaboard\vote-ideaboard.component.html: Access is denied. (os error 5)
.\src\assets\img\w-1.png: Access is denied. (os error 5)
.\src\app\guest-access\short-url-map\short-url-map.component.css: Access is denied. (os error 5)
.\src\app\dtos\idea-board.ts: Access is denied. (os error 5)
.\src\app\guest-access\vote-ideaboard\vote-ideaboard.component.ts: Access is denied. (os error 5)
.\src\assets\img\w-2.png: Access is denied. (os error 5)
.\src\app\guest-access\short-url-map\short-url-map.component.html: Access is denied. (os error 5)
.\src\app\dtos\iteration.ts: Access is denied. (os error 5)
.\src\assets\img\w-3.png: Access is denied. (os error 5)
.\src\app\guest-access\menu\guest-header\guest-header.component.css: Access is denied. (os error 5)
.\src\app\guest-access\short-url-map\short-url-map.component.ts: Access is denied. (os error 5)
.\src\app\dtos\mindmap.ts: Access is denied. (os error 5)
.\src\assets\img\w-4.png: Access is denied. (os error 5)
.\src\app\guest-access\menu\guest-header\guest-header.component.html: Access is denied. (os error 5)
.\src\app\guest-access\menu\guest-footer\guest-footer.component.css: Access is denied. (os error 5)
.\src\app\dtos\planner.ts: Access is denied. (os error 5)
.\src\assets\img\w-5.png: Access is denied. (os error 5)
.\src\app\guest-access\menu\guest-header\guest-header.component.ts: Access is denied. (os error 5)
.\src\app\guest-access\menu\guest-footer\guest-footer.component.html: Access is denied. (os error 5)
.\src\assets\img\w-6.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\bootstrap-material-design.min.js: Access is denied. (os error 5)
.\src\app\guest-access\menu\guest-footer\guest-footer.component.ts: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\bootstrap-toggle.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\apple-icon.png: Access is denied. (os error 5)
.\src\app\dtos\user.ts: Access is denied. (os error 5)
.\src\assets\img\w-7.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\bootstrap2-toggle.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\atos-logo.png: Access is denied. (os error 5)
.\src\app\dtos\userDoc.ts: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\jquery.min.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\bi-ucases.png: Access is denied. (os error 5)
.\src\assets\img\w-8.png: Access is denied. (os error 5)
.\src\app\dtos\vote.ts: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\material-dashboard.min.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\bmodel.png: Access is denied. (os error 5)
.\src\assets\img\WhyStudios.png: Access is denied. (os error 5)
.\src\app\dtos\workspace.ts: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\material-kit.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\brainstorming.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\core\balloontooltip.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\ideation\ideaboard.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\moment.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\businesscanvas.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\core\bootstrap-toggle.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\ideation\jsmind.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\popper.min.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\businessmodel.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\core\bootstrap2-toggle.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\ideation\sweetalert2.min.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\studios.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\cocreation.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\core\hexagonal.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\ideation\vis-timeline-graph2d.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\summernote.min.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\designthinking.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\ideation\vis-timeline-graph2d.min.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\core\material-dashboard.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\summernote.min.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\empathymap.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\ideation\vis-timeline-graph2d_old.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\core\material-dashboard.min.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\sweetalert2.min.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\graph-ucases.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\core\material-kit.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\js\core\workspace.js: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\homebg.jpg: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\css\core\studios.css: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\ideaboard.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\jmap.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\kboard.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\leancanvas.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\logo-white.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\mindmap.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\ml-ucases.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\persona.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\prototyping.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\pushpin.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\roadmap.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\sbar1.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\sidebar-1.jpg: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\strathack.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio-prototyping_webapp.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_brainstorming.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_businessmodel.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_businessmodelcanvas.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_cocreation.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_design.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_designthinking.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_empathymap.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_homebg.jpg: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_ideaboard.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_ideation.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_journeymap.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_leanbusinesscanvas.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_mindmapping.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_persona.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_prototyping.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_prototyping_analytics.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_prototyping_chatbot.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_prototyping_dsml.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_prototyping_eventsdata.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_prototyping_graphdata.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_prototyping_mobileapp.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_prototyping_webapp.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_roadmap.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_rollout.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_solutionthinking.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_strathack.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_valuepropcanvas.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_visualmodeling.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\studio_whystudios.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-businessmodel.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-ideation.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-journeymap.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-kanban.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-mindmap.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-persona.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-prototyping.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-reuse.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-roadmap.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-strathack.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\tool-visualmodel.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\ts-ucases.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\valuepropcanvas.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\visualdesign.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\visualmodeling.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\w-1.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\w-2.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\w-3.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\w-4.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\w-5.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\w-6.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\w-7.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\w-8.png: Access is denied. (os error 5)
.\dist\atos-studios-app\assets\img\WhyStudios.png: Access is denied. (os error 5)

=========================================== Output file attached ============================
[OUTPUT1.txt](https://github.com/microsoft/vscode/files/6047343/OUTPUT1.txt)
denish-kanabar commented 3 years ago

Hello,

Finally found the root cause. It was ownership issue. Recently company has made some changes which by default gives ownership to company account. When I changed file ownership of source folder and all other files/folder it started giving error and no access denied issue. Changed ownership to personal it worked.

I checked access, security and admin mode but this was missed.

image

thanks a lot @roblourens for help and sorry for trouble, somehow it didn't notice for that issue.

roblourens commented 3 years ago

No problem, glad you figured it out!