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 30432d2 commit c924ca2Copy full SHA for c924ca2
DuckDB.NET.Test/Helpers/DisposableFile.cs
@@ -20,7 +20,7 @@ public DisposableFile(string filename)
20
21
public static DisposableFile GenerateInTemp(string extension = null, int? index = null, bool create = false)
22
{
23
- var fileBuilder = new StringBuilder(Path.Combine(Path.GetTempPath(), "Temp File-" + Guid.NewGuid().ToString()));
+ var fileBuilder = new StringBuilder(Path.Combine(Directory.GetCurrentDirectory(), "Temp File-" + Guid.NewGuid().ToString()));
24
25
if (index != null)
26
0 commit comments