// Eclipse projects have a .project file. Don't copy the cloned project's .project file
// into the new project - if the new project is an Eclipse project, other code adds the .project file.
continue;
}else if(file.isDirectory() && file.getName().equals(IDavinciServerConstants.DOT_SETTINGS)){
IStorage destinationDir = projectDir.newInstance(projectDir, IDavinciServerConstants.DOT_SETTINGS);
destinationDir.mkdirs();
IStorage[] dotSettingsFiles = file.listFiles();
for(int j = 0; j < dotSettingsFiles.length; j++){
IStorage settingsFile = dotSettingsFiles[j];
if(settingsFile.getName().equals(IDavinciServerConstants.LIBS_SETTINGS)){
IStorage destination = destinationDir.newInstance(destinationDir, settingsFile.getName());