Index: CopyUtil.java =================================================================== RCS file: /cvs/core/src/org/netbeans/core/upgrade/CopyUtil.java,v retrieving revision 1.12 diff -r1.12 CopyUtil.java 274c274,278 < subTargetFo = FileUtil.copyFile(subSourceFo, destFolder, subSourceFo.getName(), subSourceFo.getExt()); --- > if ( Utilities.getOperatingSystem () == Utilities.OS_VMS > && subSourceFo.getNameExt ().equalsIgnoreCase ( "_nbattrs.") ) > subTargetFo = FileUtil.copyFile(subSourceFo, destFolder, subSourceFo.getNameExt(), subSourceFo.getExt()); > else > subTargetFo = FileUtil.copyFile(subSourceFo, destFolder, subSourceFo.getName(), subSourceFo.getExt()); 316a321 > 321,322c326,332 < } < subTargetFo = FileUtil.copyFile (subSourceFo, dest, subSourceFo.getName ()); --- > } > > if ( Utilities.getOperatingSystem () == Utilities.OS_VMS > && subSourceFo.getNameExt ().equalsIgnoreCase ( "_nbattrs.") ) > subTargetFo = FileUtil.copyFile (subSourceFo, dest, subSourceFo.getNameExt ()); > else > subTargetFo = FileUtil.copyFile (subSourceFo, dest, subSourceFo.getName ()); Index: DefaultAttributes.java =================================================================== RCS file: /cvs/openide/src/org/openide/filesystems/DefaultAttributes.java,v retrieving revision 1.53 diff -r1.53 DefaultAttributes.java 155a156 > 159c160 < // So we now have to change the existing "_nbattrs." file into ".nbattrs" --- > // So we now have to copy the existing "_nbattrs." file into ".nbattrs" 164c165 < renameVMSAttrFile (f); --- > change.delete(f+"/"+arr[0]); // NOI18N 181c182 < // So we now have to change the existing "_nbattrs." file into ".nbattrs" --- > // So we now have to copy the existing "_nbattrs." file into ".nbattrs" 186c187,191 < renameVMSAttrFile (f); --- > File fp = new File (f+"/"+".nbattrs"); > if ( ! fp.exists() ) { > cache = null; > copyVMSAttrFile (f); > } 210c215 < private void renameVMSAttrFile (String f) throws IOException { --- > private void copyVMSAttrFile (String f) throws IOException { 214c219,220 < try { --- > try { > 226c232 < change.delete (f+"/"+"_nbattrs."); --- > //change.delete (f+"/"+"_nbattrs.");