You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
662 B
29 lines
662 B
#include <stdio.h>
|
|
#include <tqdir.h>
|
|
#include <tqfile.h>
|
|
#include <kinstance.h>
|
|
#include <kurl.h>
|
|
#include <tdefilemetainfo.h>
|
|
#include <kmimetype.h>
|
|
|
|
int main (int argc, char **argv)
|
|
{
|
|
TDEInstance ins("kmfitest");
|
|
|
|
if (argc < 2) {
|
|
printf("usage: %s <file>\n", argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
for (int i = 1; i < argc; i++) {
|
|
TQString file = TQFile::decodeName(argv[i]);
|
|
tqWarning("File: %s", file.local8Bit().data());
|
|
KMimeType::Ptr p;
|
|
p = KMimeType::findByPath(file);
|
|
tqWarning("Mime type (findByPath): %s", p->name().latin1());
|
|
KFileMetaInfo meta(file, TQString::null, KFileMetaInfo::TechnicalInfo | KFileMetaInfo::ContentInfo);
|
|
}
|
|
|
|
return 0;
|
|
}
|