diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kio/tests/kmfitest.cpp | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/tests/kmfitest.cpp')
-rw-r--r-- | kio/tests/kmfitest.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/kio/tests/kmfitest.cpp b/kio/tests/kmfitest.cpp new file mode 100644 index 000000000..c50b83b34 --- /dev/null +++ b/kio/tests/kmfitest.cpp @@ -0,0 +1,28 @@ +#include <stdio.h> +#include <qdir.h> +#include <qfile.h> +#include <kinstance.h> +#include <kurl.h> +#include <kfilemetainfo.h> +#include <kmimetype.h> + +int main (int argc, char **argv) +{ + KInstance ins("kmfitest"); + + if (argc < 2) { + printf("usage: %s <file>\n", argv[0]); + return 1; + } + + for (int i = 1; i < argc; i++) { + QString file = QFile::decodeName(argv[i]); + qWarning("File: %s", file.local8Bit().data()); + KMimeType::Ptr p; + p = KMimeType::findByPath(file); + qWarning("Mime type (findByPath): %s", p->name().latin1()); + KFileMetaInfo meta(file, QString::null, KFileMetaInfo::TechnicalInfo | KFileMetaInfo::ContentInfo); + } + + return 0; +} |