MKFilePicker 1.0.3
dotnet add package MKFilePicker --version 1.0.3
NuGet\Install-Package MKFilePicker -Version 1.0.3
<PackageReference Include="MKFilePicker" Version="1.0.3" />
paket add MKFilePicker --version 1.0.3
#r "nuget: MKFilePicker, 1.0.3"
// Install MKFilePicker as a Cake Addin #addin nuget:?package=MKFilePicker&version=1.0.3 // Install MKFilePicker as a Cake Tool #tool nuget:?package=MKFilePicker&version=1.0.3
MKFilePicker
<p>Modify Maui File picker. can pick folder,read pick file after restart application.create file under picked folder Only support windows and Android.</p> <p>基于Maui的文件选择器,可以选择文件夹,并且在程序重启后访问选择的文件或文件夹。</p>
<p>1.pick a video file and read it:</p> <p>挑选文件并读取:</p> <code> FilePickResult res = await Picker.PickFileAsync(FilePickOptions.Videos); using var stream = Picker.OpenPickedFile(res.PlatformPath, "r"); </code> <p>if you target android api29 or lower and granted android.permission.READ_EXTERNAL_STORAGE and android.permission.WRITE_EXTERNAL_STORAGE, or target android api29 higher and granted android.permission.MANAGE_EXTERNAL_STORAGE, or target windows,you can read file like this:</p> <p>如果目标安卓平台在api29以下并且获得了读写外部存储权限,或者api29以上并获得管理所有文件权限,或者windows平台,可以直接使用file api访问:</p> <code> using var fs=File.OpenRead(res.FullPath); </code> <p>2,pick multiFiles:</p> <p>选择多个文件:</p> <code> var results = await Picker.PickFilesAsync(FilePickOptions.Videos); </code> <p>3,pick special type file:</p> <p>选择特定文件:</p> <code> var fileOptions = new FilePickOptions() { FileTypes = new FilePickerFileType(new Dictionary<DevicePlatform, IEnumerable<string>> { {DevicePlatform.Android,new string[]{"image/"} }, {DevicePlatform.WinUI,new string[]{".png", ".jpg", ".jpeg", ".webp",".gif","*.bmp"} } }), }; FilePickResult res = await Picker.PickFileAsync(fileOptions); </code> <p>4,pick a folder and create file under it:</p> <p>挑选文件夹,并在其下创建文件:</p> <code> var folder = await Picker.PickFolderAsync(null); var res = Picker.CreateFile(folder.PlatformPath, "test.txt"); using var stream=Picker.OpenPickedFile(res.PlatformPath, "w"); using var sw=new StreamWriter(stream ); sw.Write("测试文字"); </code> <p>5,pick a folder and create folder under it:</p> <p>挑选文件夹并在其下创建文件夹:</p> <code> var res3 = Picker.CreateFolder(folder.PlatformPath, "testFolder"); var res4 = Picker.CreateFile(res3.PlatformPath, "TestInnerFolder/test.txt"); using var stream = Picker.OpenPickedFile(res4.PlatformPath, "w"); using var sw = new StreamWriter(stream); sw.Write("测试文字"); </code>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0-android33.0 is compatible. net7.0-ios16.1 is compatible. net7.0-maccatalyst16.1 is compatible. net7.0-windows10.0.19041 is compatible. net8.0-android was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-windows was computed. |
-
net7.0-android33.0
- No dependencies.
-
net7.0-ios16.1
- No dependencies.
-
net7.0-maccatalyst16.1
- No dependencies.
-
net7.0-windows10.0.19041
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.3 | 372 | 6/11/2023 |
1.0.2 | 168 | 6/10/2023 |
1.0.1 | 191 | 6/8/2023 |
1.0.0-alpha | 124 | 5/15/2023 |