Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/e7f1b9dcbe46acf1bf8754278ada7de0 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/e7f1b9dcbe46acf1bf8754278ada7de0 to your computer and use it in GitHub Desktop.
// For complete examples and data files, please go to https://github.com/groupdocs-merger/GroupDocs.Merger-for-.NET
string sourceFile = CommonUtilities.sourcePath + fileName;
// Preparing.
string password = "SomePasswordString";
int startPage = 5;
int endPage = 8;
RangeMode mode = RangeMode.EvenPages;
SplitOptions splitOptions = new SplitOptions(FileFormat.Vsdx, password,startPage, endPage, mode);
Stream openFile = new FileStream(sourceFile, FileMode.Open);
// Main method.
MultiDocumentResult splitResult = new DocumentHandler().Split(openFile, splitOptions);
for (int i = 0; i < splitResult.Documents.Count; i++)
{
Stream documentStream = splitResult.Documents[i].Stream;
//output file
var fileStream = File.Create(CommonUtilities.outputPath + "OutPut " + i + "." + FileFormat.Vsdx);
documentStream.CopyTo(fileStream);
documentStream.Close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment