I am trying to look for a folder called .vscode and I can’t find it anywhere on my C drive. Is it hidden? If it is, where should I look for it so that i can unhide it.
I tried searching for it manually on my pc and it took too long and still didn’t find anything. i checked the in appdata and still couldn’t find it.
I have a python program. It is inside a folder. Thus the project folder is that folder itself. (documents/python). I have ran the code. No .vscode folder has been created. Hence why I am asking for help.
This is not similar to the question "what is the vscode folder" since I can’t find the folder itself, I know that an electron orbits a hydrogen nucleus, but I can’t find its location.
Here is the python.code-workspace file’s code
{
"folders": [
{
"path": "."
}
],
"settings": {
"emmet.preferences": {}
}
2
Answers
According to official documentation:
The .vscode folder is usually a hidden directory located in the root of your project folder.
The .vscode folder typically appears in one of the following places:
If you don’t find the .vscode folder, it may not have been created yet. You can create this folder manually in your project directory if you need to store specific settings or extensions there.
You can know more information through The documentation