2024-02-01 15:55:52 -07:00
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
2024-02-01 17:43:41 -07:00
|
|
|
match cosmic_files::dialog()? {
|
|
|
|
|
Some(paths) => {
|
|
|
|
|
for path in paths {
|
|
|
|
|
println!("{}", path.display());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
None => {}
|
|
|
|
|
}
|
|
|
|
|
Ok(())
|
2024-02-01 15:55:52 -07:00
|
|
|
}
|