|
@@ -301,6 +301,8 @@ fn set_default_path(
|
|
|
mut dialog_builder: FileDialogBuilder,
|
|
|
default_path: PathBuf,
|
|
|
) -> FileDialogBuilder {
|
|
|
+ // we need to adjust the separator on Windows: https://github.com/tauri-apps/tauri/issues/8074
|
|
|
+ let default_path: PathBuf = default_path.components().collect();
|
|
|
if default_path.is_file() || !default_path.exists() {
|
|
|
if let (Some(parent), Some(file_name)) = (default_path.parent(), default_path.file_name()) {
|
|
|
if parent.components().count() > 0 {
|