1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00
This commit is contained in:
Alex Amadori 2017-03-09 21:00:13 +01:00
parent c60353faf7
commit f969c3b7b3

View File

@ -106,7 +106,7 @@ namespace osu.Game.Tests.Beatmaps.IO
private string prepareTempCopy(string path)
{
var temp = Path.GetTempFileName();
var temp = Path.GetTempPath()+Guid.NewGuid()+".osz";
return new FileInfo(path).CopyTo(temp, true).FullName;
}