diff --git a/PowerPoint-Presentation/Extract_Text_From_PPTX/.NET/Extract_Text_From_PPTX/Output/Sample.txt b/PowerPoint-Presentation/Extract_Text_From_PPTX/.NET/Extract_Text_From_PPTX/Output/Output.txt similarity index 100% rename from PowerPoint-Presentation/Extract_Text_From_PPTX/.NET/Extract_Text_From_PPTX/Output/Sample.txt rename to PowerPoint-Presentation/Extract_Text_From_PPTX/.NET/Extract_Text_From_PPTX/Output/Output.txt diff --git a/PowerPoint-Presentation/Extract_Text_From_PPTX/.NET/Extract_Text_From_PPTX/Program.cs b/PowerPoint-Presentation/Extract_Text_From_PPTX/.NET/Extract_Text_From_PPTX/Program.cs index de5c675b..86a2f431 100644 --- a/PowerPoint-Presentation/Extract_Text_From_PPTX/.NET/Extract_Text_From_PPTX/Program.cs +++ b/PowerPoint-Presentation/Extract_Text_From_PPTX/.NET/Extract_Text_From_PPTX/Program.cs @@ -6,7 +6,7 @@ { string extractedText = ExtractDocumentText(presentation); //Write the text collection to a text file - System.IO.File.WriteAllText(Path.GetFullPath(@"../../../Output/Sample.txt"), extractedText); + System.IO.File.WriteAllText(Path.GetFullPath(@"Output/Output.txt"), extractedText); } static string ExtractDocumentText(IPresentation presentation)