VOOZH about

URL: https://www.nuget.org/packages/DiskInfoToolkit/

⇱ NuGet Gallery | DiskInfoToolkit 2.1.1




👁 Image
DiskInfoToolkit 2.1.1

dotnet add package DiskInfoToolkit --version 2.1.1
 
 
NuGet\Install-Package DiskInfoToolkit -Version 2.1.1
 
 
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="DiskInfoToolkit" Version="2.1.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DiskInfoToolkit" Version="2.1.1" />
 
Directory.Packages.props
<PackageReference Include="DiskInfoToolkit" />
 
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 DiskInfoToolkit --version 2.1.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DiskInfoToolkit, 2.1.1"
 
 
#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 DiskInfoToolkit@2.1.1
 
 
#: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=DiskInfoToolkit&version=2.1.1
 
Install as a Cake Addin
#tool nuget:?package=DiskInfoToolkit&version=2.1.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

DiskInfoToolkit

👁 GitHub license
👁 Build master
👁 Nuget
👁 Nuget

A toolkit for Storage Device informations. Primarily used for reading S.M.A.R.T. data from storage devices.

Preview of DiskInfoViewer

Please click on an image to show its full size.<br/> Note that the screenshots may not always represent the latest version of the app.

<a href="Screenshots/DiskInfoViewer01.png"> <img src="Screenshots/DiskInfoViewer01.png" width="300"/> </a> <a href="Screenshots/DiskInfoViewer02.png"> <img src="Screenshots/DiskInfoViewer02.png" width="300"/> </a>

Project overview

Project .NET Version[s]
DiskInfoToolkit <br/> This library reads detailed information from various types of storage devices - including NVMe, SSD, HDD and USB drives. <br/> It provides a high level API to read device data, SMART attributes, Partitions and other hardware details directly from the system. .NET Framework 4.7.2 & 4.8.1 <br/> .NET Standard 2.0 <br/> .NET 8, 9 and 10
ConsoleOutputTest <br/> Example Application to show how some library functionality can be used. .NET 8
DiskInfoViewer <br/> Visualization of detected storage devices on your system. <br/> This supports adding / removing storage devices and updates data. <br/> UI is built using Avalonia UI. .NET 8

What platforms are supported ?

We currently support Windows and Linux.<br/> There is currently no plan to support Mac / Apple Computers.

Where can I download it ?

You can download the latest release from here.

How can I help improve the project ?

Feel free to give feedback and contribute to our project !<br/> Pull requests are welcome. Please include as much information as possible.

Developer information

Integrate the library in your own application

Sample code

static class Program
{
 static void Main(string[] args)
 {
 //You can enable logging and set level, if you need logging output
 Logger.Instance.IsEnabled = true;
 Logger.Instance.LogLevel = LogLevel.Trace;

 //Get all storage devices
 var disks = Storage.GetDisks();

 //Go through all devices
 foreach (var disk in disks)
 {
 //Output Model of storage device
 Console.WriteLine($"Detected storage device '{disk.ProductName}' ('{disk.DisplayName}').");
 }

 //Register change event
 Storage.DevicesChanged += DevicesChanged;

 var secondsToWait = 10;

 //Wait for specified amount of time and listen to device changes
 Console.WriteLine($"Waiting {secondsToWait} seconds for device changes.");
 Thread.Sleep(TimeSpan.FromSeconds(secondsToWait));

 //Update devices once
 foreach (var disk in Storage.CurrentDisks)
 {
 //Refresh device data and output if there were changes compared to cached data
 if (Storage.Refresh(disk))
 {
 Console.WriteLine($"Refreshed - changes detected: '{disk.ProductName}' ('{disk.DisplayName}')");
 }
 else
 {
 Console.WriteLine($"Refreshed - no changes detected: '{disk.ProductName}' ('{disk.DisplayName}')");
 }
 }

 //Unregister change event
 Storage.DevicesChanged -= DevicesChanged;

 //Save log file to current directory, if you enabled logging output
 Logger.Instance.SaveToFile("Log.txt", false);

 //All done
 Console.WriteLine("Press enter to exit...");
 Console.ReadLine();
 }

 static void DevicesChanged(object sender, StorageDevicesChangedEventArgs e)
 {
 //Check if there are changes, if not we can ignore this event
 if (!e.HasChanges)
 {
 return;
 }

 //Simple output of added devices
 if (e.Added != null)
 {
 foreach (var added in e.Added)
 {
 Console.WriteLine($"Added: '{added.ProductName}' ('{added.DisplayName}')");
 }
 }

 //Simple output of removed devices
 if (e.Removed != null)
 {
 foreach (var removed in e.Removed)
 {
 Console.WriteLine($"Removed: '{removed.ProductName}' ('{removed.DisplayName}')");
 }
 }
 }
}

License

DiskInfoToolkit is free and open source software licensed under MPL 2.0.<br/> You can use it in private and commercial projects.<br/> Keep in mind that you must include a copy of the license in your project.

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 is compatible.  net48 net48 was computed.  net481 net481 is compatible. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
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 DiskInfoToolkit:

Package Downloads
LibreHardwareMonitorLib

Monitor the temperature sensors, fan speeds, voltages, load and clock speeds of your computer.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on DiskInfoToolkit:

Repository Stars
LibreHardwareMonitor/LibreHardwareMonitor
Libre Hardware Monitor is free software that can monitor the temperature sensors, fan speeds, voltages, load and clock speeds of your computer.
breadeding/OmenSuperHub
Control Omen laptop performance, fan speeds, and keyboard lighting, and unlock power limits.
Version Downloads Last Updated
2.1.1 1,431 5/20/2026
2.1.0 1,438 5/3/2026
2.0.4 861 4/26/2026
2.0.3 500 4/19/2026
2.0.2 551 4/15/2026
2.0.1 473 4/10/2026
2.0.0 664 4/6/2026
1.2.1 755 3/24/2026
1.2.0 1,592 3/13/2026
1.1.3 1,385 2/26/2026
1.1.2 27,341 1/8/2026
1.1.1 5,073 1/5/2026
1.1.0 3,347 12/2/2025
1.0.9 971 12/1/2025
1.0.8 509 11/29/2025
1.0.7 528 11/28/2025
1.0.6 1,592 11/16/2025
1.0.5 272 11/16/2025
1.0.4 392 11/14/2025
1.0.3 551 11/12/2025
Loading failed