Dirkster.WSF 1.2.0

dotnet add package Dirkster.WSF --version 1.2.0
NuGet\Install-Package Dirkster.WSF -Version 1.2.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="Dirkster.WSF" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dirkster.WSF --version 1.2.0
#r "nuget: Dirkster.WSF, 1.2.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.
// Install Dirkster.WSF as a Cake Addin
#addin nuget:?package=Dirkster.WSF&version=1.2.0

// Install Dirkster.WSF as a Cake Tool
#tool nuget:?package=Dirkster.WSF&version=1.2.0

Codacy Badge Build status Release NuGet

Net4 NetCore3

Windows Shell Foundation (WSF)

<h2><img src="https://github.com/Dirkster99/WSF/blob/master/ProjectIcon.png?raw=true" height="64"/> Overview</h2>

This project implements an open source Windows Shell data provider, which is necessary to display information related to the Windows system structure in an Application. This library is the core of a Metro Breadcrumb control implemented in a different project.

This implementation targets Windows 10 but should also be good for support on Vista and later (Windows 7-8).

Parts of this project were originally developed by <b>Leung Yat Chun Joseph <a href="https://github.com/lycj">lycj</a></b> in his FileExplorer application originating from CodePlex and <a href="https://www.codeproject.com/Members/Fainx">CodeProject</a>.

The implementation of the Windows Shell Foundation in this WSF project is based on LYCJ's interfaces but completely refactored in terms of models and classes using SharpShell as a base of most things that are there.

Finding all children (eg: 'This PC') under the Desktop root is as complicated as this:

using WSF;
using WSF.IDs;

foreach (var item in Browser.GetChildItems(KF_IID.ID_FOLDERID_Desktop))
{
    Console.WriteLine("Name '{0}' SpecialPathId '{1}' PathFileSystem '{2}'",
        item.Name, item.SpecialPathId, item.PathFileSystem);
}

The Name attribute is localized (it should be "This PC" in English and "Dieser PC" in German).

More information about the Windows Shell.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.0

    • No dependencies.
  • .NETFramework 4.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Dirkster.WSF:

Package Downloads
Javi.ExplorerTreeView

This package provides a Windows Explorer application navigation like usercontrol for WPF. The usercontrol inherits from the standard WPF treeview and can be styled like a basic treeview. Follow the link to the project site which leads to the github repository for this package to see some sample screens.

WolvenKit.ExplorerControl

Provides a WPF/MVVM AutoComplete control

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.0 1,530 9/7/2019
1.1.1 1,671 2/6/2019
1.1.0 677 2/4/2019
1.0.2 857 1/28/2019
1.0.1 852 1/22/2019
1.0.0 858 1/21/2019

Package Update with support based on .NetCore 3 and .Net4.