{"id":16723069,"url":"https://github.com/musm/winknownpaths.jl","last_synced_at":"2026-05-19T01:34:39.897Z","repository":{"id":61800025,"uuid":"282235205","full_name":"musm/WinKnownPaths.jl","owner":"musm","description":"Predictably call known Windows folders  from Julia","archived":false,"fork":false,"pushed_at":"2020-08-18T14:37:38.000Z","size":136,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-20T23:27:30.186Z","etag":null,"topics":["julia","windows"],"latest_commit_sha":null,"homepage":"https://musm.github.io/WinKnownPaths.jl","language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/musm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-24T14:04:36.000Z","updated_at":"2020-08-18T14:36:33.000Z","dependencies_parsed_at":"2022-10-21T11:45:12.314Z","dependency_job_id":null,"html_url":"https://github.com/musm/WinKnownPaths.jl","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/musm%2FWinKnownPaths.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/musm%2FWinKnownPaths.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/musm%2FWinKnownPaths.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/musm%2FWinKnownPaths.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/musm","download_url":"https://codeload.github.com/musm/WinKnownPaths.jl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243734214,"owners_count":20339258,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["julia","windows"],"created_at":"2024-10-12T22:36:46.089Z","updated_at":"2026-05-19T01:34:39.782Z","avatar_url":"https://github.com/musm.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WinKnownPaths.jl\n\nThis package allows you to reliably call known Windows paths identified by\ntheir UUID without having to make brittle calls to system environment variables.\n\n\n[![](https://img.shields.io/badge/docs-blue.svg)](https://musm.github.io/WinKnownPaths.jl)\n\n### Installation\n```julia\npkg\u003e add WinKnownPaths\n```\n\n## Usage \u0026 Examples\n\n\n```julia\njulia\u003e using WinKnownPaths\n\njulia\u003e import WinKnownPaths: FOLDERID\n\njulia\u003e WinKnownPaths.path(FOLDERID.System)\n\"C:\\\\WINDOWS\\\\system32\"\n\njulia\u003e WinKnownPaths.path(FOLDERID.Fonts)\n\"C:\\\\WINDOWS\\\\Fonts\"\n```\n\n`FOLDERID` contains constants that identify possible paths callable through their\n`UUID`. The full list is provided below, please see the documentation for\n[knownfolderid](https://docs.microsoft.com/en-us/windows/win32/shell/knownfolderid) for\na detailed description of each constant:\n```julia\nFOLDERID.AccountPictures\nFOLDERID.AdminTools\nFOLDERID.ApplicationShortcuts\nFOLDERID.CameraRoll\nFOLDERID.CDBurning\nFOLDERID.CommonAdminTools\nFOLDERID.CommonOEMLinks\nFOLDERID.CommonPrograms\nFOLDERID.CommonStartMenu\nFOLDERID.CommonStartup\nFOLDERID.CommonTemplates\nFOLDERID.Contacts\nFOLDERID.Cookies\nFOLDERID.Desktop\nFOLDERID.DeviceMetadataStore\nFOLDERID.Documents\nFOLDERID.DocumentsLibrary\nFOLDERID.Downloads\nFOLDERID.Favorites\nFOLDERID.Fonts\nFOLDERID.GameTasks\nFOLDERID.History\nFOLDERID.ImplicitAppShortcuts\nFOLDERID.InternetCache\nFOLDERID.Libraries\nFOLDERID.Links\nFOLDERID.LocalAppData\nFOLDERID.LocalAppDataLow\nFOLDERID.LocalizedResourcesDir\nFOLDERID.Music\nFOLDERID.MusicLibrary\nFOLDERID.NetHood\nFOLDERID.OriginalImages\nFOLDERID.PhotoAlbums\nFOLDERID.PicturesLibrary\nFOLDERID.Pictures\nFOLDERID.Playlists\nFOLDERID.PrintHood\nFOLDERID.Profile\nFOLDERID.ProgramData\nFOLDERID.ProgramFiles\nFOLDERID.ProgramFilesX64\nFOLDERID.ProgramFilesX86\nFOLDERID.ProgramFilesCommon\nFOLDERID.ProgramFilesCommonX64\nFOLDERID.ProgramFilesCommonX86\nFOLDERID.Programs\nFOLDERID.Public\nFOLDERID.PublicDesktop\nFOLDERID.PublicDocuments\nFOLDERID.PublicDownloads\nFOLDERID.PublicGameTasks\nFOLDERID.PublicLibraries\nFOLDERID.PublicMusic\nFOLDERID.PublicPictures\nFOLDERID.PublicRingtones\nFOLDERID.PublicUserTiles\nFOLDERID.PublicVideos\nFOLDERID.QuickLaunch\nFOLDERID.Recent\nFOLDERID.RecordedTVLibrary\nFOLDERID.ResourceDir\nFOLDERID.Ringtones\nFOLDERID.RoamingAppData\nFOLDERID.RoamedTileImages\nFOLDERID.RoamingTiles\nFOLDERID.SampleMusic\nFOLDERID.SamplePictures\nFOLDERID.SamplePlaylists\nFOLDERID.SampleVideos\nFOLDERID.SavedGames\nFOLDERID.SavedSearches\nFOLDERID.Screenshots\nFOLDERID.SearchHistory\nFOLDERID.SearchTemplates\nFOLDERID.SendTo\nFOLDERID.SidebarDefaultParts\nFOLDERID.SidebarParts\nFOLDERID.SkyDrive\nFOLDERID.SkyDriveCameraRoll\nFOLDERID.SkyDriveDocuments\nFOLDERID.SkyDrivePictures\nFOLDERID.StartMenu\nFOLDERID.Startup\nFOLDERID.System\nFOLDERID.SystemX86\nFOLDERID.Templates\nFOLDERID.UserPinned\nFOLDERID.UserProfiles\nFOLDERID.UserProgramFiles\nFOLDERID.UserProgramFilesCommon\nFOLDERID.Videos\nFOLDERID.VideosLibrary\nFOLDERID.Windows\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmusm%2Fwinknownpaths.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmusm%2Fwinknownpaths.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmusm%2Fwinknownpaths.jl/lists"}