Enum TypeOfExtension
- Namespace
- SunamoFileExtensions.Enums
- Assembly
- SunamoFileExtensions.dll
Represents the type/category of a file extension
public enum TypeOfExtension
- Extension Methods
Fields
archive = 0Archive files (zip, rar, 7z, etc.)
binary = 12Binary files (dll, etc.)
configText = 6Configuration text files. Verified that all extensions in AllExtension are textual.
contentBinary = 8Binary content files
contentText = 7Content text files (XML, JSON, mdf, ldf, sdf, etc.) Can't name data because is difficult to search (exists also database)
database = 5Database files (db, etc.)
documentBinary = 4Binary document files (pdf, etc.)
documentText = 3Text document files (txt, md, rtf, etc.)
executable = 11Executable files (exe, msi, etc.)
font = 15Font files (ttf, woff, otf, etc.)
image = 1Image files (png, jpg, gif, etc.)
multimedia = 16Multimedia files (audio, video, etc.)
other = 18Used when extension isn't known. For other files, display their description from Windows.
resource = 13Resource files. For resources, it probably wouldn't matter if they were encoded in base64, but to be safe, they are all classified as binary to avoid potential damage.
script = 14Script files (sql, cmd, ps1, etc.). Verified that all extensions in AllExtension are textual.
settingsText = 9Settings text files (ini, etc.). Verified that all extensions in AllExtension are textual.
source_code = 2Source code files (cs, js, html, etc.)
temporary = 17Temporary files
visual_studioText = 10Visual Studio text files. Verified that all extensions in AllExtension are textual.