Hi Team,
I am getting error while doing ppt.SaveToFile(destinationTempFile, FileFormat.Pptx2013); And the error is as below:
The filename, directory name, or volume label syntax is incorrect. : 'C:\\<solutionpath>\\<myfileBloburl>'
Thanks in advance for your support.
Here is my code.
//sourcepath - My file 1 blob url (Means file present in azure blob)
//[streamUrl - stream of sourcepath]
//destinationPath - My file 2 blob url (Eg: http://dummyrul.com//dummyFolder//testfile.pptx)
Presentation ppt = new Presentation();
ppt.LoadFromStream(streamUrl, FileFormat.Pptx2013);
ISlide slide = ppt.Slides[0];
slide.ReplaceAllText("MyTitle", "UpdatedTile", false);
ppt.SaveToFile(destinationPath, FileFormat.Pptx2013);
- Here, when calling .SaveToFile i'm getting error as 'The filename, directory name, or volume label syntax is incorrect. : 'C:\\<solutionpath>\\<destinationPath>'