You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to click ~/Library/Application Support using the in-game file browser, the file browser flashes red and refuses to go into the directory.
It looks like while DirectorySelector.TryGetEntriesForPath is iterating over/sorting directory entries, the below exception is thrown and and caught. It is likely due to DirectoryInfo.GetDirectories attempting to pre-populate DirectoryInfo.
System.UnauthorizedAccessException: Access to the path '/Users/daohe/Library/Application Support/com.apple.LaunchServicesTemplateApp.dv' is denied.
Inaccessible directories in ~/Library/Application Support/ has also been a problem with JetBrains IDEs (e.g. this RIDER issue). According to this IDEA issue, ~/Library/Application Support/com.apple.LaunchServicesTemplateApp.dv is used by macOS Sonoma to support the new "Add to Dock" feature.
The text was updated successfully, but these errors were encountered:
ILW8
added a commit
to ILW8/osu-framework
that referenced
this issue
Dec 21, 2023
When attempting to click
~/Library/Application Support
using the in-game file browser, the file browser flashes red and refuses to go into the directory.It looks like while
DirectorySelector.TryGetEntriesForPath
is iterating over/sorting directory entries, the below exception is thrown and and caught. It is likely due toDirectoryInfo.GetDirectories
attempting to pre-populate DirectoryInfo.osu-framework/osu.Framework/Graphics/UserInterface/DirectorySelector.cs
Lines 201 to 219 in d267e0f
Inaccessible directories in
~/Library/Application Support/
has also been a problem with JetBrains IDEs (e.g. this RIDER issue). According to this IDEA issue,~/Library/Application Support/com.apple.LaunchServicesTemplateApp.dv
is used by macOS Sonoma to support the new "Add to Dock" feature.The text was updated successfully, but these errors were encountered: