We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea24e8e commit 77dad9cCopy full SHA for 77dad9c
dotnet/test/DotNetPdfTest/PDFTests.cs
@@ -11,9 +11,11 @@ public class PDFTests
11
public void TestITextFormat()
12
{
13
string report = "PDFFormat.pdf";
14
- string outputFileDirectory = @".\temp\";
+ string outputFileDirectory = "temp";
15
16
string reportFullPath = Path.Combine(Directory.GetCurrentDirectory(), outputFileDirectory, report);
17
+ Directory.CreateDirectory(Path.GetDirectoryName(reportFullPath));
18
+
19
if (File.Exists(reportFullPath))
20
File.Delete(reportFullPath);
21
try
0 commit comments