File.TypeChecker
2.0.3
See the version list below for details.
dotnet add package File.TypeChecker --version 2.0.3
NuGet\Install-Package File.TypeChecker -Version 2.0.3
<PackageReference Include="File.TypeChecker" Version="2.0.3" />
paket add File.TypeChecker --version 2.0.3
#r "nuget: File.TypeChecker, 2.0.3"
// Install File.TypeChecker as a Cake Addin #addin nuget:?package=File.TypeChecker&version=2.0.3 // Install File.TypeChecker as a Cake Tool #tool nuget:?package=File.TypeChecker&version=2.0.3
FileTypeChecker - Don't let users to inject you an invalid file
FileTypeChecker is a easy to use library that allows you to identify type of file. This will help you to validate all files that are provided by external sources.
Change log
- Adding IFormFile extension and validations to work directly with ASP NET Core input interface.
- Update attributes to validate multiple files and adding API that allows user to work with IFormFile directly.
- Optimized activator usage.
- Making sure file types only get initialized once when calling RegisterTypes after initialization has triggered.
See what is new in this version in our github release page
Why to use it?
Have you ever had a requirement for users to be able to upload files of a certain type? How do you validate that the file type is allowed? How do you protect your application from uploading a malicious file? It is standard practice to use the FileSystemInfo class provided by Microsoft and its Extension property for this kind of job, but is that enough? The answer is simple - No! This is why this small but effective library comes to help.
How it works?
FileTypeChecker use file's "magic numbers" to identify the type. According to Wikipedia this term ("magic numbers") was used for a specific set of 2-byte identifiers at the beginnings of files, but since any binary sequence can be regarded as a number, any feature of a file format which uniquely distinguishes it can be used for identification. This approach offers better guarantees that the format will be identified correctly, and can often determine more precise information about the file. See more about Magic Numbers
How to use?
using (var fileStream = File.OpenRead("myFileLocation"))
{
var isRecognizableType = FileTypeValidator.IsTypeRecognizable(fileStream);
if (!isRecognizableType)
{
// Do something ...
}
IFileType fileType = FileTypeValidator.GetFileType(fileStream);
Console.WriteLine("Type Name: {0}", fileType.Name);
Console.WriteLine("Type Extension: {0}", fileType.Extension);
Console.WriteLine("Is Image?: {0}", fileStream.IsImage());
Console.WriteLine("Is Bitmap?: {0}", fileStream.Is<Bitmap>());
}
If you are interested in finding more samples please use our wiki page.
What types of file are supported?
Currently FileTypeChecker is able to identify 22 different types but also you are able to register your own types. For more information please visit our wiki page
Product | Versions 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.1 is compatible. |
-
- System.Linq.Async (>= 5.0.0)
NuGet packages (10)
Showing the top 5 NuGet packages that depend on File.TypeChecker:
Package | Downloads |
---|---|
Mii.Rinjani.Gateway.Commons
Package Description |
|
DeploySoftware.LaunchPad.Core
Shared code for LaunchPad framework. |
|
File.TypeChecker.Web
Don't let users to inject you an invalid file! FileTypeChecker is a easy to use library that allows you to read file and recognize its type. This will help you to validate all files that is provided by external sources. |
|
Deploy.LaunchPad.Core
Shared code for LaunchPad framework. |
|
SAPI
Simple API server written in C# |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.1.1 | 140,018 | 4/27/2024 |
4.1.0 | 154,200 | 4/6/2024 |
4.0.0 | 513,986 | 5/2/2023 |
3.0.0 | 522,818 | 12/16/2021 |
2.1.0 | 6,242 | 11/16/2021 |
2.0.3 | 1,423 | 11/11/2021 |
1.5.3 | 22,145 | 10/29/2021 |
1.5.2 | 26,803 | 8/2/2021 |
1.5.1 | 43,352 | 4/30/2021 |
1.4.0 | 62,125 | 11/24/2020 |
1.3.3 | 13,772 | 10/20/2020 |
1.3.2 | 5,477 | 10/4/2020 |
1.3.1 | 105,425 | 5/15/2020 |
1.3.0 | 8,674 | 5/7/2020 |
1.2.0 | 2,195 | 3/14/2020 |
1.1.0 | 1,465 | 3/7/2020 |
1.0.4 | 1,870 | 10/5/2019 |
1.0.3 | 1,635 | 10/5/2019 |
1.0.1 | 1,583 | 10/5/2019 |
1.0.0 | 9,878 | 10/4/2019 |