mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
28 lines
683 B
C++
28 lines
683 B
C++
#include <stdio.h>
|
|
#include <QtCore/QDir>
|
|
#include <QtCore/QFile>
|
|
#include <kcomponentdata.h>
|
|
#include <kurl.h>
|
|
#include <kfilemetainfo.h>
|
|
#include <kmimetype.h>
|
|
|
|
int main (int argc, char **argv)
|
|
{
|
|
KComponentData ins(QByteArray("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.toLocal8Bit().data());
|
|
KMimeType::Ptr p;
|
|
p = KMimeType::findByPath(file);
|
|
qWarning("Mime type (findByPath): %s", p->name().toLatin1().constData());
|
|
KFileMetaInfo meta(file, KFileMetaInfo::TechnicalInfo | KFileMetaInfo::ContentInfo);
|
|
}
|
|
|
|
return 0;
|
|
}
|