summaryrefslogtreecommitdiff
path: root/library
authoralwin <alwin>2005-03-07 14:37:57 (UTC)
committer alwin <alwin>2005-03-07 14:37:57 (UTC)
commit61b9d5f646faa5bd84391318f6440bee6cbefcd8 (patch) (side-by-side diff)
treeb05eba6d4f33dd501c8fe6af0579567de7f659ec /library
parent9ac0dc3c7b4e56f38c3cefce2e5699078aa3a357 (diff)
downloadopie-61b9d5f646faa5bd84391318f6440bee6cbefcd8.zip
opie-61b9d5f646faa5bd84391318f6440bee6cbefcd8.tar.gz
opie-61b9d5f646faa5bd84391318f6440bee6cbefcd8.tar.bz2
when copying a file to another storage it checks if the target-dir
(eg <storage>/Documents/<mime>/<mimesub>) exists and create it otherwise.
Diffstat (limited to 'library') (more/less context) (ignore whitespace changes)
-rw-r--r--library/lnkproperties.cpp42
1 files changed, 40 insertions, 2 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp
index f0f0bba..f05f398 100644
--- a/library/lnkproperties.cpp
+++ b/library/lnkproperties.cpp
@@ -41,12 +41,13 @@
#include <qpushbutton.h>
#include <qgroupbox.h>
#include <qcheckbox.h>
#include <qlabel.h>
#include <qlayout.h>
#include <qfile.h>
+#include <qdir.h>
#include <qfileinfo.h>
#include <qmessagebox.h>
#include <qsize.h>
#include <qcombobox.h>
#include <qregexp.h>
#include <qbuttongroup.h>
@@ -244,25 +245,62 @@ void LnkProperties::beamLnk()
DocLnk doc( *((DocLnk *)lnk) );
doc.setName(d->docname->text());
reject();
ir.send( doc, doc.comment() );
}
+static bool createMimedir(const QString&base,const QString&mimetype)
+{
+ int pos = 0;
+ int stage = 0;
+ if (base.length()==0) return FALSE;
+ QString _tname = base+"/Documents";
+ QDir _dir(_tname+"/"+mimetype);
+ if (_dir.exists()) return TRUE;
+ pos = mimetype.find("/");
+ _dir.setPath(_tname);
+ while (stage<2) {
+ if (!_dir.exists()) {
+ if (!_dir.mkdir(_tname)) {
+ qDebug( QString("Creation of dir %1 failed\n").arg(_tname));
+ return FALSE;
+ }
+ }
+ switch(stage) {
+ case 0:
+ _tname+="/"+mimetype.left(pos);
+ break;
+ case 1:
+ _tname+="/"+mimetype.right(pos-1);
+ break;
+ default:
+ break;
+ }
+ _dir.setPath(_tname);
+ ++stage;
+ }
+ return TRUE;
+}
+
bool LnkProperties::copyFile( DocLnk &newdoc )
{
const char *linkExtn = ".desktop";
QString fileExtn;
int extnPos = lnk->file().findRev( '.' );
if ( extnPos > 0 )
fileExtn = lnk->file().mid( extnPos );
QString safename = newdoc.name();
safename.replace(QRegExp("/"),"_");
- QString fn = locations[ d->locationCombo->currentItem() ]
- + "/Documents/" + newdoc.type() + "/" + safename;
+ QString fn = locations[ d->locationCombo->currentItem() ]
+ + "/Documents/" + newdoc.type();
+ if (!createMimedir(locations[ d->locationCombo->currentItem() ],newdoc.type())) {
+ return FALSE;
+ }
+ fn+="/"+safename;
if ( QFile::exists(fn + fileExtn) || QFile::exists(fn + linkExtn) ) {
int n=1;
QString nn = fn + "_" + QString::number(n);
while ( QFile::exists(nn+fileExtn) || QFile::exists(nn+linkExtn) ) {
n++;
nn = fn + "_" + QString::number(n);