flowey_lib_common/_util/
mod.rsuse flowey::node::prelude::FlowPlatformKind;
use flowey::node::prelude::RustRuntimeServices;
use std::path::Path;
pub mod extract;
pub mod wslpath;
pub fn copy_dir_all(src: impl AsRef<Path>, dst: impl AsRef<Path>) -> std::io::Result<()> {
fs_err::create_dir_all(&dst)?;
for entry in fs_err::read_dir(src.as_ref())? {
let entry = entry?;
let dst = dst.as_ref().join(entry.file_name());
if entry.file_type()?.is_dir() {
copy_dir_all(entry.path(), dst)?;
} else {
fs_err::copy(entry.path(), dst)?;
}
}
Ok(())
}
pub fn running_in_wsl(_rt: &mut RustRuntimeServices<'_>) -> bool {
let Ok(output) = std::process::Command::new("wslpath")
.args(["-aw", "/"])
.output()
else {
return false;
};
String::from_utf8_lossy(&output.stdout).starts_with(r"\\wsl.localhost")
}
pub fn bsdtar_name(rt: &mut RustRuntimeServices<'_>) -> &'static str {
match rt.platform().kind() {
FlowPlatformKind::Windows => "tar.exe",
FlowPlatformKind::Unix => "bsdtar",
}
}