Oakrey.Applications.FileBrowsing 7.0.0

dotnet add package Oakrey.Applications.FileBrowsing --version 7.0.0
                    
NuGet\Install-Package Oakrey.Applications.FileBrowsing -Version 7.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Oakrey.Applications.FileBrowsing" Version="7.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Oakrey.Applications.FileBrowsing" Version="7.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Oakrey.Applications.FileBrowsing" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Oakrey.Applications.FileBrowsing --version 7.0.0
                    
#r "nuget: Oakrey.Applications.FileBrowsing, 7.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Oakrey.Applications.FileBrowsing@7.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Oakrey.Applications.FileBrowsing&version=7.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Oakrey.Applications.FileBrowsing&version=7.0.0
                    
Install as a Cake Tool

Oakrey.Applications.FileBrowsing

File browsing and selection management for .NET 10 Windows applications.

Features

  • Enumerates files with a configurable search pattern.
  • Optionally searches subfolders without following reparse points.
  • Skips inaccessible nested folders.
  • Sorts file results deterministically.
  • Persists the selected file and publishes selection changes.
  • Logs through placeholder-based Oakrey.Log messages.
  • Includes a WPF PathToNameConverter.

Dependencies

  • Oakrey.Applications.FileBrowsing.Abstractions 7.0.0
  • Oakrey.Log.Abstractions 3.0.0
  • Oakrey.ViewModels 3.0.0
  • System.Reactive 6.1.0

These packages are direct dependencies because their types are used directly by the implementation.

Installation

dotnet add package Oakrey.Applications.FileBrowsing

Usage

services.AddSingleton<IFileBrowsingServiceSettings, CsvBrowsingSettings>();
services.AddSingleton<IFileBrowsingService, FileBrowsingService>();
using IDisposable subscription = browser.SelectedFileChanged.Subscribe(file =>
{
    Console.WriteLine(file?.Name ?? "No file selected");
});

foreach (FileInfo file in browser.AvailableFiles)
{
    Console.WriteLine(file.Name);
}

Use a simple file pattern such as *.csv. Recursion is controlled independently by IncludeSubFolders; a **/ prefix is not required.

Safety notes

  • Recursive enumeration skips files and directories marked as reparse points.
  • Full browsing paths are not written to routine log messages.
  • Invalid or inaccessible folders result in an empty list and a warning log.
  • Duplicate folder and selection values do not publish redundant notifications.

License

MIT. Copyright (c) Oakrey 2016-present.

Product Compatible and additional computed target framework versions.
.NET net10.0-windows7.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Oakrey.Applications.FileBrowsing:

Package Downloads
Oakrey.Applications.FileBrowsing.Extended

Extended file browsing library with file management operations. Adds create, delete, edit file capabilities with built-in user prompts and confirmations. Features customizable file templates, Windows Explorer integration, and comprehensive error handling. Extends Oakrey.Applications.FileBrowsing.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
7.0.0 89 7/20/2026
6.0.2 111 7/8/2026
6.0.1 102 7/3/2026
6.0.0 117 5/22/2026
2.0.0 118 5/22/2026
1.0.1 133 3/13/2026
1.0.0 125 3/11/2026