sudo "/Applications/Visual Studio Code.app/Contents/MacOS/Electron" ~/.bash_profile
It works for me.
However, according to the answers on the websites, it is not recommended to get super user permission when you launch the vs code. I am new to vs code as well so I don't know the right method to get permission.
Besides, on my mac, you will get only permission once when you type in the command and after you exit your vs code, you will not possess the permission if you open the vs code again. I am still working on it and try to fix.
I had a similar issue. I had error when I tried to create a new component. I just navigated to the path displayed in Finder. For me it was ProjectFolder/src/. So I did right click on "src" folder and selected "Get Info". In that change access to "Read&Write" for my user account. Thats it !!!
As you are trying to update a file, try to change access permission for that file (ie. app.component.css). If it didn't work try to change access for "app" folder.
Note: Changing the access of parent/super-parent folder won't work. So change the exact folder's access preferences.
At this point, to modify any of the files under <project_dir_name>, you can give full permission to all subfolders and files recursively by issuing the command:
sudo chmod -R 777 <project_dir_name>
Note that you're responsible for the changes your perform!
After having saved the updates, you can reset the previous permission settings of the folders by looking at the old permissions saved in the file old_permissions.txt. You should set the permissions manually (unless you create e.g. a script to do it automatically using the info saved in old_permissions.txt).
Note: it's probably a better idea to only modify the permissions of the specific files that you want to modify (and not of the whole folder).
Go to your project, double click on the app.js file and select 'Get info'. There will be an option of 'Sharing & Permission'. From there you can change access permissions for other users.
cd to the project directory and
run cd .. to move back one folder
run sudo chmod -R 777 <project_dir_name>
it works for me vscode never asked me for password when saving my file again.
Here's the solution: You probably tried to save the file to "Macintosh Hd" which is the default place when you click on "Save as", so you can't just save a file to the computer inside itself, you have got to choose a directory, like you can save it to /Desktop or /users/your_username/... something like that. But saving to "Macintosh Hd" will always be unsuccessful.
I found a fix. I simply uninstalled the code command from PATH in vscode and reinstalled. i.e open the command pallete, search "uninstall 'code' command in PATH" and select the first option to uninstall. Then do the same to install it back "install 'code'...". Do same for installing too. That should fix it
In my case, it turned out that the VSCode application was in the Downloads folder, and not in the Applications folder.
After I moved it to the Applications folder, I deleted the /usr/local/bin/code symlink. Then, I closed and re-opened VSCode, and hit Command+Shift+P and typed code which brought up Shell Command: Install 'code' command in PATH and successfully added code to the path!
Easy fix is: go to visual studio code and press cmd+shift+p and then the type 'uninstall code' select that option and reinstall it again with cmd+shift+p and type 'install code' and click.