From b916e0bfd277e2fab2a8532de0ba1368e53bc80c Mon Sep 17 00:00:00 2001 From: Karan-SF4772 Date: Tue, 28 Jul 2026 20:13:27 +0530 Subject: [PATCH] Updated the changes --- .../Extract_Text_From_PPTX/Output/{Sample.txt => Output.txt} | 0 .../.NET/Extract_Text_From_PPTX/Program.cs | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename PowerPoint-Presentation/Extract_Text_From_PPTX/.NET/Extract_Text_From_PPTX/Output/{Sample.txt => Output.txt} (100%) 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)