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 2bdac28 commit e287a95Copy full SHA for e287a95
Assets/MixedRealityToolkit/Utilities/Editor/FileUtilities.cs
@@ -42,7 +42,7 @@ public static FileInfo[] FindFilesInPackageCache(string fileName)
42
/// </returns>
43
public static DirectoryInfo GetPackageCache()
44
{
45
- const string packageCacheFolderName = @"Library\PackageCache";
+ string packageCacheFolderName = Path.Combine("Library", "PackageCache");
46
47
DirectoryInfo projectRoot = new DirectoryInfo(Application.dataPath).Parent;
48
return new DirectoryInfo(Path.Combine(projectRoot.FullName, packageCacheFolderName));
0 commit comments