Ошибка: файл архива не может быть размером 0. FileFormatException Unhandled
Я пытался вставить новый слайд в свою презентацию, следуя https://msdn.microsoft.com/EN-US/library/office/cc850834.aspx
Это выдает ошибку: файл архива не может быть размером 0
Мой код:
string presentationFile=@"C:\Users\SS\Desktop\TestPresentation6.pptx";
public static void InsertNewSlide(string presentationFile, int position, string slideTitle)
{
using (PresentationDocument presentationDocument = PresentationDocument.Open(presentationFile, true))
{
// Pass the source document and the position and title of the slide to be inserted to the next method.
InsertNewSlide(presentationDocument, position, slideTitle);
}
}
Использую open XML SDK 2.5. Может ли кто-нибудь помочь мне понять, на что указывает эта ошибка. Я не мог найти какое-либо полезное решение. Кто-нибудь сталкивался с такой же проблемой?
Цените свое время!
Спасибо!!!