-rw-r--r-- | library/filemanager.cpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/library/filemanager.cpp b/library/filemanager.cpp index 2e5efdd..fbfa1d9 100644 --- a/library/filemanager.cpp +++ b/library/filemanager.cpp | |||
@@ -256,4 +256,7 @@ bool FileManager::renameFile( const QString & src, const QString & dest ) | |||
256 | { | 256 | { |
257 | qWarning( "problem renaming file %s to %s, errno: %d", src.latin1(), dest.latin1(), errno ); | 257 | if ( errno != 2 && errno != 11 ) //ignore ENOENT and EAGAIN - bug in system? |
258 | return false; | 258 | { |
259 | qWarning( "problem renaming file %s to %s, errno: %d", src.latin1(), dest.latin1(), errno ); | ||
260 | return false; | ||
261 | } | ||
259 | } | 262 | } |
@@ -313,12 +316,11 @@ bool FileManager::exists( const DocLnk &f ) | |||
313 | /*! | 316 | /*! |
314 | Ensures that the path \a fn exists, by creating required directories. | 317 | Ensures that the path \a fileName exists, by creating required directories. |
315 | Returns TRUE if successful. | 318 | Returns TRUE if successful. |
316 | */ | 319 | */ |
317 | bool FileManager::ensurePathExists( const QString &fn ) | 320 | bool FileManager::ensurePathExists( const QString &fileName ) |
318 | { | 321 | { |
319 | QFileInfo fi(fn); | 322 | QDir directory = QFileInfo( fileName ).dir(); |
320 | fi.setFile( fi.dirPath(TRUE) ); | 323 | if ( !directory.exists() ) |
321 | if ( !fi.exists() ) | ||
322 | { | 324 | { |
323 | if ( system( ("mkdir -p " + QFile::encodeName( fi.filePath() ) ) ) ) | 325 | if ( !directory.mkdir( directory.absPath() ) ) |
324 | return FALSE; | 326 | return FALSE; |