You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
736 B
25 lines
736 B
use std::path::Path;
|
|
|
|
pub fn read_basic_files(path: impl AsRef<Path>) -> impl Iterator<Item = (String, String)> {
|
|
path.as_ref().read_dir().unwrap().filter_map(|entry| {
|
|
let Ok(entry) = entry else {
|
|
return None;
|
|
};
|
|
|
|
if entry
|
|
.file_name()
|
|
.into_string()
|
|
.map(|name| name.ends_with(".mbas"))
|
|
.unwrap_or(false)
|
|
{
|
|
let file_name = entry.file_name().into_string().unwrap();
|
|
let file = std::fs::read_to_string(entry.path()).unwrap_or_else(|e| {
|
|
panic!("Error opening {:?}: {:?}", file_name, e);
|
|
});
|
|
Some((file_name, file))
|
|
} else {
|
|
None
|
|
}
|
|
})
|
|
}
|