Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to know the No. of java files in my workspace in Eclipse?

I have a java project with a lot java files. So, I want to know the number of .java files in my project in Eclipse. How to know that?

like image 636
GuruKulki Avatar asked May 18 '10 16:05

GuruKulki


People also ask

How do I view Java files in Eclipse?

Searching the WorkspaceClicking on the Search menu and selecting Search or File or Java. Clicking Ctrl + H.

Where are Eclipse Java projects stored?

- [Voiceover] When we first installed Eclipse, and we launched it for the first time, do you remember the prompt that it asked you where you wanted to store your files? It automatically defaults to the C drive, to users, your username, and it creates a folder called Workspace. That's where your files are located.

Where is the Eclipse workspace folder?

Go to Eclipse's window option then go to preferences then type Workspace in top left corner, Under Startup & ShutDown click on Workspace option then you find correct path of Eclipse Workspace. Save this answer. Show activity on this post.


1 Answers

Press Ctrl+Shift+r to show the resources. Then enter *.java and mark all items of the list (Ctrl+a). The list will give you a summary how many resources it has found.

like image 132
tangens Avatar answered Oct 20 '22 16:10

tangens