Provides a Windows.Storage implementation of the OwlCore.Storage APIs.
Published releases are available on NuGet. To install, run the following command in the Package Manager Console.
PM> Install-Package OwlCore.Storage.Uwp
Or using dotnet
> dotnet add package OwlCore.Storage.Uwp
// Get the StorageFolder
var storageFolder = ApplicationData.Current.LocalFolder;
// Create the abstraction
var folder = new WindowsStorageFolder(storageFolder);
// Get the StorageFile
var storageFile = await GetStorageFile();
// Create the abstraction
var file = new WindowsStorageFolder(storageFile);
We accept donations here and here, and we do not have any active bug bounties.
Version numbering follows the Semantic versioning approach. However, if the major version is 0
, the code is considered alpha and breaking changes may occur as a minor update.
All OwlCore code is licensed under the MIT License. OwlCore is licensed under the MIT License. See the LICENSE file for more details.