Hi,
I have a bunch of .pps files which are being recognized as .ppt files, even though LoadFormat.Pps exists.
Here’s the code I use:
File dir = new File("pps");
IPresentationFactory presentationFactory = new PresentationFactory();
for (File file : dir.listFiles()) {
System.out.println(presentationFactory.getPresentationInfo(file.getAbsolutePath()).getLoadFormat());
}
Can you check this?
Thanks,
Zeljko