OutputPath

Html5Options.OutputPath property

Determines where external resources should be stored. Read/write String.

public string OutputPath { get; set; }

Examples

Example:

[C#]
using (Presentation pres = new Presentation("demo.pptx"))
{
  pres.Save("demo-linked-images.html", SaveFormat.Html5, new Html5Options()
  {
      EmbedImages = true,
      OutputPath = "the_desired_path"
  });
}

See Also