diff --git a/OpenXmlPowerToolsExamples/TextReplacer02/TextReplacer02.cs b/OpenXmlPowerToolsExamples/TextReplacer02/TextReplacer02.cs index 7071816b..4737dd82 100644 --- a/OpenXmlPowerToolsExamples/TextReplacer02/TextReplacer02.cs +++ b/OpenXmlPowerToolsExamples/TextReplacer02/TextReplacer02.cs @@ -20,7 +20,7 @@ static void Main(string[] args) var tempDi = new DirectoryInfo(string.Format("ExampleOutput-{0:00}-{1:00}-{2:00}-{3:00}{4:00}{5:00}", n.Year - 2000, n.Month, n.Day, n.Hour, n.Minute, n.Second)); tempDi.Create(); - DirectoryInfo di2 = new DirectoryInfo("../../"); + DirectoryInfo di2 = new DirectoryInfo("../../../"); foreach (var file in di2.GetFiles("*.docx")) file.CopyTo(Path.Combine(tempDi.FullName, file.Name));