'How to Change Read-Only Status of Files in intellij
Solution 1:[1]
To toggle read-only attribute of a file, open file in the editor, or select it in the Project tool window. Do one of the following:
- On the main menu, choose
File | File Properties | Make File Read-Only
, orMake File Writable
.
- Click the lock icon in the Status bar in the bottom right corner.
Solution 2:[2]
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.
Solution 3:[3]
For Mac, this definitely works:
sudo chmod -R 777 /YourDirectory
Solution 4:[4]
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.
Solution 5:[5]
If you're using Mac. Follow bellow steps:
- Open that file by Finder
- Right click and select
Get Info
- In that File Info window, select
Sharing and Permissions
, changePrivilege
as you expected. Before changing, you would remember unlocking your change permission by click on aLocker Icon
at bottom right.
Solution 6:[6]
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.
Solution 7:[7]
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.
Solution 8:[8]
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.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Oliv |
Solution 2 | |
Solution 3 | |
Solution 4 | tryingsohard |
Solution 5 | Long Nguyen |
Solution 6 | Carlos Murray |
Solution 7 | Manish Chauhan |
Solution 8 | Harisudha |