We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$path is just the path of the folder/directory
On Linux: write $path: copy_file_range: is a directory
On Windows: read $path: Incorrect function.
When trying to use the move function on a directory/folder, I get the following error listed above
The code below results with RootURI looking like this on Linux
package main import ( "fmt" "fyne.io/fyne/v2/app" "fyne.io/fyne/v2/storage" ) func main() { fyneApp := app.NewWithID("MoveFailTestCode") path, err := storage.Child(fyneApp.Storage().RootURI(), "Folder") fmt.Println(err) exists, err := storage.Exists(path) fmt.Println(err) if !exists { err := storage.CreateListable(path) if err != nil { fmt.Println(err) } } newPath, err := storage.Child(fyneApp.Storage().RootURI(), "RenamedFolder") fmt.Println(err) err = storage.Move(path, newPath) fmt.Println(err) }
2.5.4
1.23.4
Linux OpenSuse Tumbleweed && Windows 10
No response
The text was updated successfully, but these errors were encountered:
That's now resolved on develop branch
develop
Sorry, something went wrong.
No branches or pull requests
Checklist
Describe the bug
$path is just the path of the folder/directory
On Linux:
write $path: copy_file_range: is a directory
On Windows:
read $path: Incorrect function.
How to reproduce
When trying to use the move function on a directory/folder, I get the following error listed above
Screenshots
The code below results with RootURI looking like this on Linux

Example code
Fyne version
2.5.4
Go compiler version
1.23.4
Operating system and version
Linux OpenSuse Tumbleweed && Windows 10
Additional Information
No response
The text was updated successfully, but these errors were encountered: