Crate winfolder

source ·
Expand description

This crate provides access to Windows APIs for querying the location of standard standard Windows folders on the current system.

Example

extern crate winfolder;

use winfolder::Folder;

Folder::ProgramFilesX86.path()

Modules

Provides so-called KNOWNFOLDERID constants of Windows, i.e., the GUIDs associated with standard folders registered with the system as known folders.

Enums

Represents a standard Windows known folder.

Functions

Returns the path for a Windows known folder based on that folder’s GUID. Some standard known folder GUIDs can be found in the winfolder::id module.