When you right-click on a project in eclipse, what is the difference between “New Folder”, “New Source Folder” and “New Package”? They all seem to do the same thing and the reference does not say much.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
New folder creates a new folder inside a project.
New source folder creates a new folder iside a project, and adds this folder to the set of source folders of the project. Eclipse will compile the files in this folder.
New package creates a new Java package inside a source folder. It also creates the folder associated with the package, of course.