CheckFileEncoding 1.0.3
dotnet add package CheckFileEncoding --version 1.0.3
NuGet\Install-Package CheckFileEncoding -Version 1.0.3
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="CheckFileEncoding" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CheckFileEncoding --version 1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CheckFileEncoding, 1.0.3"
#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 CheckFileEncoding as a Cake Addin #addin nuget:?package=CheckFileEncoding&version=1.0.3 // Install CheckFileEncoding as a Cake Tool #tool nuget:?package=CheckFileEncoding&version=1.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
check_your_encoding
A nuget for encoding detection of the 3 most common encodings with BOM.
- UTF-8
- UTF-16(BE)
- UTF-16(LE)
Getting Started
Installing
To install CheckFileEncoding, run the following command in Package Manager Console
Install-Package CheckFileEncoding
To install CheckFileEncoding, open a command line, switch to the directory that contains you project file and run the command below
dotnet add package CheckFileEncoding
Usage/Examples
using CheckFileEncoding
//you can use the premade chain to go through all the encoding checks
var chain = Factory.EncodingChain;
//Call ClientCodeMethod and add the chain and path to the file you want to check
Client.ClientCode(chain, @"c:\users\username\Desktop\file_name.txt");
//Or you can call the methods one at a time
var utf8 = new UTF8Handler();
//Add the path to the file you want to check
utf8.Handle(@"c:\users\username\desktop\file_name.txt");
//If the encoding is found. Response should be something like this:
The document is encoded with UTF16(LE)/LittleEndian
//If not, it should be something like this:
Document is not encoded with UTF16(LE)/LittleEndian.
Please try another.
Built With
- Refactoring Guru - The design pattern used
Contributing
Contributions are always welcome!
Authors
See also the list of contributors who participated in this project.
License
Acknowledgments
- Marcus Medina - Factory and Chain Of Responsibility structure
- 2Toad - https://stackoverflow.com/questions/3825390/effective-way-to-find-any-files-encoding - Codeinspiration
- cheng-chen - https://stackoverflow.com/questions/3404199/how-to-find-out-the-encoding-of-a-file-c-sharp
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.