#dylib #dll #process #executable #current

process_path

Gets the path of the currently executing process or dynamic library

4 releases

0.1.4 Jun 27, 2022
0.1.3 Jan 7, 2021
0.1.1 Jan 4, 2017
0.1.0 Jan 4, 2017

#74 in macOS and iOS APIs

Download history 3511/week @ 2024-12-15 932/week @ 2024-12-22 1031/week @ 2024-12-29 3192/week @ 2025-01-05 3191/week @ 2025-01-12 2888/week @ 2025-01-19 3064/week @ 2025-01-26 3919/week @ 2025-02-02 3593/week @ 2025-02-09 3860/week @ 2025-02-16 4787/week @ 2025-02-23 4624/week @ 2025-03-02 4952/week @ 2025-03-09 5314/week @ 2025-03-16 8074/week @ 2025-03-23 7279/week @ 2025-03-30

25,968 downloads per month
Used in 8 crates (6 directly)

MIT/Apache

13KB
212 lines

process_path

A Rust library to get the path of the currently executing process or the the current dynamic library.

The latter is particularly useful for ‘plug-in‘ type dynamic libraries that need to load resources stored relative to the location of the library in the file system.

Usage

Add this to your Cargo.toml:

[dependencies]
process_path = "0.1.4"

and this to your crate root:

use process_path;

Example

This program prints its path to stdout:

use process_path::get_executable_path;

fn main() {
    let path = get_executable_path();
    match path {
        None => println!("The process path could not be determined"),
        Some(path) => println!("{:?}", path)
    }
}

Supported Platforms

Platform Underlying API get_executable_path() get_dylib_path()
Linux readlink(/proc/self/exe) dladdr()
FreeBSD sysctl(3) or readlink(/proc/curproc/file) dladdr()
NetBSD readlink(/proc/curproc/exe) dladdr()
DragonflyBSD readlink(/proc/curproc/file) dladdr()
macOS _NSGetExecutablePath() dladdr()
Windows GetModuleFileName() GetModuleHandleEx()

License

Copyright Wesley Wiser and process_path contributors.

Licensed under either of

at your option.

Dependencies

~185KB