Xamarin.CustomFileManager
1.0.0
See the version list below for details.
dotnet add package Xamarin.CustomFileManager --version 1.0.0
NuGet\Install-Package Xamarin.CustomFileManager -Version 1.0.0
<PackageReference Include="Xamarin.CustomFileManager" Version="1.0.0" />
paket add Xamarin.CustomFileManager --version 1.0.0
#r "nuget: Xamarin.CustomFileManager, 1.0.0"
// Install Xamarin.CustomFileManager as a Cake Addin #addin nuget:?package=Xamarin.CustomFileManager&version=1.0.0 // Install Xamarin.CustomFileManager as a Cake Tool #tool nuget:?package=Xamarin.CustomFileManager&version=1.0.0
SqliteORM
A cross platform custom wrapper for FileManager on iOS and Android<
Usage:
using Subsystems.CustomFileManager.External;
... ...
private CMPFileManagerProxy _fileProxy;
Initialize
_fileProxy = new CMPFileManagerProxy(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal));
CreateAsync
private async Task CreateAsync()
{
await _fileProxy.CreateFileAsync("file1.txt", Encoding.UTF8.GetBytes("test content2432423"),
FileCreationType.Overwrite);
}
GetContentsAsync
private async Task GetContentsAsync()
{
var bytes = await _fileProxy.GetContentsAsync("file1.txt");
Console.WriteLine(bytes);
}
RemoveFileAsync
private async Task RemoveFileAsync()
{
var couldRemove = await _fileProxy.RemoveFileAsync("file1.txt");
Console.WriteLine(couldRemove);
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid90 is compatible. |
Xamarin.iOS | xamarinios10 is compatible. |
-
MonoAndroid 9.0
- No dependencies.
-
Xamarin.iOS 1.0
- No dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Xamarin.CustomFileManager:
Package | Downloads |
---|---|
Xamarin.CustomCache
A Shared Xamarin component for Caching custom data on to disk |
|
Xamarin.ImageLoader
A Reusable component to Download Image directly from URL. This also supportes Caching the downloaded images efficiently |
|
Xamarin.CustomImageView.iOS
A custom ImageView component for iOS with inteligent Caching, Handle Cache expiry, Automatic Download |
GitHub repositories
This package is not used by any popular GitHub repositories.
1. Initial Release for FileManager component
2. Works for both iOS & Android
3. Wraps file manager functionalaties for iOS & Android