-rw-r--r-- | library/lnkproperties.cpp | 42 |
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 @@ -31,32 +31,33 @@ #include <qpe/categorywidget.h> #include <qpe/qcopenvelope_qws.h> #include <qpe/filemanager.h> #include <qpe/config.h> #include <qpe/storage.h> #include <qpe/qpemessagebox.h> #include <qpe/mimetype.h> #include <qlineedit.h> #include <qtoolbutton.h> #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> #include <stdlib.h> LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) : QDialog( parent, 0, TRUE ), lnk(l), fileSize( 0 ) { setCaption( tr("Properties") ); QVBoxLayout *vbox = new QVBoxLayout( this ); d = new LnkPropertiesBase( this ); @@ -234,45 +235,82 @@ bool LnkProperties::moveLnk() } // remove old lnk lnk->removeFiles(); return TRUE; } void LnkProperties::beamLnk() { Ir ir; 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); } fn = nn; } newdoc.setFile( fn + fileExtn ); newdoc.setLinkFile( fn + linkExtn ); // Copy file FileManager fm; if ( !fm.copyFile( *lnk, newdoc ) ) return FALSE; |