Hi All,
I have used creation of Files (to be linked to folders ultimately) programatically for text related content like text files or doc files.
private void createFile() throws Exception {
document = (IDfDocument) mySession.newObject("dm_document");
document.setObjectName(FILE_NAME);
document.setContentType("crtext"); //What should the value in the parameters be for zip files?
document.setContent(forRetrieve);
document.save();
}
Now i have the requirement to create zip files for linking.
Would like to have your help to obtain the content type for this scenario
Thanks & Regards
Vishnu S