In Eclipse, I have one existing project, A. Right now, I have just created another project, B, which is empty. Is it possible to copy all the files of project A, including its source code and related libraries to project B? There are a lot of involved libraries in project A. How to do this copying process correctly to ensure the copied files can still be compiled?
Share
You can Import the project
OR
Assuming both project A and B are of same type:
You can copy the contents of
srcfolder as it is.For the libraries, just go to the build path and add them in the ssame way you did for project A.