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
{{ message }}
This repository was archived by the owner on Feb 18, 2025. It is now read-only.
On macOS, the names of the various system-created directories like
Library,Music, etc can vary based on the user's locale.This crate simply hard-codes paths such as
home_dir().map(|h| h.join("Music")), which won't always find the correct directory.Instead, the
NSSearchPathForDirectoriesInDomainsshould be used to find the appropriate path to look for.