Index: lams_common/src/java/org/lamsfoundation/lams/util/zipfile/ZipFileUtil.java =================================================================== RCS file: /usr/local/cvsroot/lams_common/src/java/org/lamsfoundation/lams/util/zipfile/ZipFileUtil.java,v diff -u -r1.9 -r1.10 --- lams_common/src/java/org/lamsfoundation/lams/util/zipfile/ZipFileUtil.java 15 Jun 2006 06:35:33 -0000 1.9 +++ lams_common/src/java/org/lamsfoundation/lams/util/zipfile/ZipFileUtil.java 15 Jun 2006 06:49:09 -0000 1.10 @@ -138,6 +138,7 @@ entryName = entry.getName(); String destName = tempDirName + File.separator + entryName; + log.debug("Prepare directory for :" + destName); prepareDirectory(destName); FileOutputStream fos = new FileOutputStream( destName ); @@ -178,8 +179,10 @@ //It must sort out the directory information to current OS. //e.g, if zip file is zipped under windows, but unzip in linux. destName = FileUtil.makeCanonicalPath(destName); + log.debug("Change canonical directory to :" + destName); File destNameFile = new File(destName); String path = destNameFile.getParent(); + log.debug("Making path :" + path); if(path != null){ File pathDir = new File(path); pathDir.mkdirs();