mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
Fix usage of temp subfolder
This commit is contained in:
parent
54e28cea23
commit
8720e19b91
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ public class DownloaderTests
|
||||||
{
|
{
|
||||||
var tempDownloadFolder = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
|
var tempDownloadFolder = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
|
||||||
Directory.CreateDirectory(tempDownloadFolder);
|
Directory.CreateDirectory(tempDownloadFolder);
|
||||||
_ffOptions = new FFOptions { BinaryFolder = Path.GetTempPath() };
|
_ffOptions = new FFOptions { BinaryFolder = tempDownloadFolder };
|
||||||
}
|
}
|
||||||
|
|
||||||
[OsSpecificTestMethod(OsPlatforms.Windows | OsPlatforms.Linux)]
|
[OsSpecificTestMethod(OsPlatforms.Windows | OsPlatforms.Linux)]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue