public static FileModel GetFile(string path)
{
FileInfo info = new(path);
// Initializes default values
int lines = 0;
int characters = 0;
Encoding encoding = Encoding.ASCII;
// Opens the file stream and locks the file from being written to.
using (FileStream fs = new(path, FileMode.Open, FileAccess.Read, FileShare.Read))
{
encoding = GetEncoding(fs);
if (IsText(encoding))
{
// Creates a read stream for the file
using StreamReader reader = new(fs);
// Reads the file's content
string content = reader.ReadToEnd();
// Splits the content by the new line character (\n)
lines = content.Split("\n").Length;
// Splits the content by each individual character.
characters = content.Length;
}
}
FileModel model = new()
{
Extension = info.Extension,
NumberOfFiles = 1,
Bytes = info.Length,
Encoding = encoding,
Lines = lines,
Characters = characters
};
return model;
}
Overview
using Library.Model;
using System.Text;
namespace Library.Controller;
/// <summary>
/// Provides methods for working with files.
/// </summary>
public static class FileController
{
/// <summary>
/// Retrieves information about a file.
/// </summary>
/// <param name="path">The absolute path to the file.</param>
/// <returns>A FileModel object containing file information.</returns>
public static FileModel GetFile(string path)
{
FileInfo info = new(path);
// Initializes default values
int lines = 0;
int characters = 0;
Encoding encoding = Encoding.ASCII;
// Opens the file stream and locks the file from being written to.
using (FileStream fs = new(path, FileMode.Open, FileAccess.Read, FileShare.Read))
{
encoding = GetEncoding(fs);
if (IsText(encoding))
{
// Creates a read stream for the file
using StreamReader reader = new(fs);
// Reads the file's content
string content = reader.ReadToEnd();
// Splits the content by the new line character (\n)
lines = content.Split("\n").Length;
// Splits the content by each individual character.
characters = content.Length;
}
}
FileModel model = new()
{
Extension = info.Extension,
NumberOfFiles = 1,
Bytes = info.Length,
Encoding = encoding,
Lines = lines,
Characters = characters
};
return model;
}
/// <summary>
/// Gets the encoding type of a file.
/// </summary>
/// <param name="fs">The FileStream representing the file.</param>
/// <returns>The encoding type of the file.</returns>
public static Encoding GetEncoding(FileStream fs)
{
// Read the first few bytes from the file
byte[] buffer = new byte[4];
fs.Read(buffer, 0, 4);
// Check for Unicode byte order marks (BOM)
if (buffer.Length >= 2 && buffer[0] == 0xFF && buffer[1] == 0xFE)
{
return Encoding.Unicode; // UTF-16 (little-endian)
}
if (buffer.Length >= 2 && buffer[0] == 0xFE && buffer[1] == 0xFF)
{
return Encoding.BigEndianUnicode; // UTF-16 (big-endian)
}
if (buffer.Length >= 3 && buffer[0] == 0xEF && buffer[1] == 0xBB && buffer[2] == 0xBF)
{
return Encoding.UTF8; // UTF-8
}
// No BOM found, default to ASCII
return Encoding.ASCII;
}
/// <summary>
/// Checks if the encoding type is text-based.
/// </summary>
/// <param name="encoding">The encoding type to check.</param>
/// <returns>True if the encoding is text-based; otherwise, false.</returns>
public static bool IsText(Encoding encoding) =>
encoding == Encoding.UTF8 ||
encoding == Encoding.ASCII ||
encoding == Encoding.Unicode ||
encoding == Encoding.UTF32;
}