Go to file
2020-05-29 16:03:08 +02:00
.gitignore Starts to implement windows GUID part. 2020-05-19 00:50:28 +02:00
known-folders.zig don't create an arena allocator on top of an arena allocator 2020-05-29 16:03:08 +02:00
LICENSE Initial commit 2020-05-18 23:48:44 +02:00
README.md split up readme 2020-05-28 20:58:22 +02:00
RESOURCES.md split up readme 2020-05-28 20:58:22 +02:00

Zig Known Folders Project

Design Goals

  • Minimal API surface
  • Provide the user with an option to either obtain a directory handle or a path name
  • Keep to folders that are available on all operating systems

API

pub const KnownFolder = enum {
    home,
    documents,
    pictures,
    music,
    videos,
    desktop,
    downloads,
    public,
    fonts,
    app_menu,
    cache,
    roaming_configuration,
    local_configuration,
    data,
    runtime,
    executable_dir,
};

pub const Error = error{ ParseError, OutOfMemory };

/// Returns a directory handle, or, if the folder does not exist, `null`.
pub fn open(allocator: *std.mem.Allocator, folder: KnownFolder, args: std.fs.Dir.OpenDirOptions) (std.fs.Dir.OpenError || Error)!?std.fs.Dir;

/// Returns the path to the folder or, if the folder does not exist, `null`.
pub fn getPath(allocator: *std.mem.Allocator, folder: KnownFolder) Error!?[]const u8;