1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 13:02:54 +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) private string prepareTempCopy(string path)
{ {
var temp = Path.GetTempFileName(); var temp = Path.GetTempPath()+Guid.NewGuid()+".osz";
return new FileInfo(path).CopyTo(temp, true).FullName; return new FileInfo(path).CopyTo(temp, true).FullName;
} }