Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The specified package is invalid. The main part is missing

Below given is a merge function which is intended to merge all docx files in a folder and produce the merged file.

public  void Merge()
{  
    try
    {

        string sid = Request.QueryString["studid"];
        string stud = sid.ToString();

        string ds = HttpContext.Current.Server.MapPath(("~\\StudentBinder") + "\\Temp4\\");
        if (Directory.Exists(ds))
        {
            DirectoryInfo d = new DirectoryInfo(ds);
            FileInfo[] Files = d.GetFiles("*" + stud + "*.docx");

              // stud added for differentiating b/w users

            string[] filepaths = new string[Files.Length];
            int index = 0;

            foreach (FileInfo file in Files)
            {
                filepaths[index] = file.Name;
                index++;
            }


                using (WordprocessingDocument myDoc = WordprocessingDocument.Open(Server.MapPath(filepaths[0]), true))

                {
                    for (int i = 1; i < filepaths.Length; i++)
                    {
                        MainDocumentPart mainPart = myDoc.MainDocumentPart;
                        string altChunkId = "AltChunkId" + i.ToString();
                        AlternativeFormatImportPart chunk = mainPart.AddAlternativeFormatImportPart(AlternativeFormatImportPartType.WordprocessingML, altChunkId);
                        using (FileStream fileStream = File.Open(@filepaths[i], FileMode.Open))
                        {
                            chunk.FeedData(fileStream);
                        }
                        AltChunk altChunk = new AltChunk();
                        altChunk.Id = altChunkId;
                        mainPart.Document.Body.InsertAfter(altChunk, mainPart.Document.Body.Elements<DocumentFormat.OpenXml.Wordprocessing.Paragraph>().Last());
                        mainPart.Document.Save();
                        myDoc.Close();
                    }
                }
        }
    }
    catch (Exception ex)
    {
    }
}

but the line

using (WordprocessingDocument myDoc = WordprocessingDocument.Open(Server.MapPath(filepaths[0]), true))

raises the error The specified package is invalid. The main part is missing.

I dont know what goes wrong in that statement. any suggestions are welcomed. Thanks in advance.

like image 740
Binto Avatar asked Jan 16 '17 09:01

Binto


1 Answers

You probably do Server.MapPath twice: in the beginning

string ds = HttpContext.Current.Server.MapPath(("~\\StudentBinder")+"\\Temp4\\")

and in the line

using (WordprocessingDocument myDoc = WordprocessingDocument.Open(Server.MapPath(filepaths[0]), true))

You can rewrite this line as

using (WordprocessingDocument myDoc = WordprocessingDocument.Open(filepaths[0], true))

and you also need to populate filepaths array from file.FullName, not file.Name:

foreach (FileInfo file in Files)
{
    filepaths[index] = file.FullName;
    index++;
}
like image 157
Heorhiy Pavlovych Avatar answered Sep 19 '22 00:09

Heorhiy Pavlovych