I have a Java project and I want to modify it in intellij but I can't do it because of this " read-only file " or "file is not writable" , so how I can modify and execute it?
I have a Java project and I want to modify it in intellij but I can't do it because of this " read-only file " or "file is not writable" , so how I can modify and execute it?
If IntelliJ IDEA is unable to change the file permissions using File | File Properties | Make File Writable, then perhaps another user is owning that file, e.g. root (use this command to verify: ls -hal /path/to/File.java)
If someone else owns it, for whatever reason, you can change the permissions yourself using the chown command in the terminal:
sudo chown yourusername /path/to/File.java,
where yourusername is the same user that you used to launch Intellij IDEA.
I was just having this issue and I finally figured out where I was going wrong.
Over an hour of suggestions from Google didn't help. It turns out I was on files selected in the -out > production > MyPath folder instead of the -src folder in my project sidebar. Selecting the -scr > MyClass file allows me to do what I want to do.
If you're using Mac. Follow bellow steps:
Get InfoSharing and Permissions, change Privilege as you expected. Before changing, you would remember unlocking your change permission by click on a Locker Icon at bottom right.In case of working with SAP Hybris in IntelliJ, the OOTB module files are read-only (file is not writable) when you import the project with Hybris plugins.
While you are importing the project (re-import the project If already imported) , you will be prompted for Import Settings.
Uncheck the Import OOTB modules in read-only mode.
After importing , you should be able to edit the OOTB files.
On your top-left corner in the drop-down where you have Tests,Production,Problems switch/choose from Project or any other directory you've choosen to Packages, you'll have your packages editable, files in the Project folder are not editable although they end with .class extension.
This error appears when the other user has created those files.
1. Right click on the file or folder to be deleted.
2. Choose reveal in folder option.
3. Delete the file and enter the password.
4. Files will be deleted.