Subversion Repository Public Repository

litesoft

Diff Revisions 809 vs 823 for /trunk/Java/core/Server/src/org/litesoft/util/FileUtils.java

Diff revisions: vs.
  @@ -161,7 +161,7 @@
161 161 throws FileSystemException
162 162 {
163 163 Objects.assertNotNull( "File", pFile );
164 - File file = DirectoryUtils.insureParentDirectory( new File( pFile.getAbsolutePath() + ".new" ) );
164 + File file = Directories.insureParent( new File( pFile.getAbsolutePath() + ".new" ) );
165 165 try
166 166 {
167 167 OutputStream os = new FileOutputStream( file );