Kaveh
Kaveh

Reputation: 466

How to remove a file from an Eclipse project without deleting the file from the disk?

Is it possible to remove a file from an Eclipse project without actually deleting the file from the disk?

Is there a reason why adding/removing files to/from a project is so tightly connected with what happens to the corresponding files on the disk?

Upvotes: 17

Views: 15189

Answers (1)

Konstantin Komissarchik
Konstantin Komissarchik

Reputation: 29139

You can filter out file system resources you don't want Eclipse to see. To do that, right click on the folder, go into Properties and then under Resource -> Resource Filters.

Upvotes: 14

Related Questions