0

Working on NetBeans, sometimes when I open an existing project, some files from that project are automatically read-only. Does anyone know how it can be solved?

Tunaki
  • 132,869
  • 46
  • 340
  • 423

1 Answers1

0

read-only property of a file does not depend on your Netbeans IDE. It is the attribute of the file itself. Try to remove the read-only attribute should solve your problem.

gigadot
  • 8,879
  • 7
  • 35
  • 51
  • On Windows, right click on the file, select properties from the context menu, unchecked read only option and save the change. On OSX, you do something similar or use chmod command on terminal, `sudo chmod u+w filepath`. – gigadot Oct 05 '15 at 08:24