windows-args

Crates.iowindows-args
lib.rswindows-args
version0.2.0
sourcesrc
created_at2019-06-15 21:17:46.365172
updated_at2019-06-18 15:34:56.421483
descriptionstd::env::args for arbitrary strings on Windows
homepage
repositoryhttps://github.com/ExpHP/windows-args
max_upload_size
id141404
size38,508
maintainers (github:rust-bus:maintainers)

documentation

README

windows-args Appveyor Crates.io Docs

A command-line argument parser for Windows, copied almost wholesale from the rust standard library.

[dependencies]
windows-args = "0.2"
use windows_args::Args;

// for a complete command line, with executable
for arg in Args::parse_cmd(r#"foobar.exe to "C:\Program Files\Hi.txt" now"#) {
    println!("{}", arg);
}

// for just args, without an executable
for arg in Args::parse_args(r#"to "C:\Program Files\Hi.txt" now"#) {
    println!("{}", arg);
}
Commit count: 33

cargo fmt