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
In Windows, when accessing a non-root directory, the path information can be successfully retrieved using Path.LocalPath.
However, when accessing the root directory of a drive, LocalPath cannot retrieve the path.
Is it possible to add the LocalPath method to the root directory?
public async Task<IStorageFolder?> OpenFolderAsync() { var folder = await _target.StorageProvider.OpenFolderPickerAsync(new FolderPickerOpenOptions() { Title = "title", AllowMultiple = false, }); return folder.Count >= 1 ? folder[0] : null; }
No response
11.2.3
Windows
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
In Windows, when accessing a non-root directory, the path information can be successfully retrieved using Path.LocalPath.
However, when accessing the root directory of a drive, LocalPath cannot retrieve the path.
Is it possible to add the LocalPath method to the root directory?
To Reproduce
Expected behavior
No response
Avalonia version
11.2.3
OS
Windows
Additional context
No response
The text was updated successfully, but these errors were encountered: