I need to determine in 80% if a file is binary or text, is there any way to do it even quick and dirty/ugly in c#?
|
|
I would probably look for an abundance of control characters which would typically be present in a binary file but rarely in an text file. Binary files tend to use 0 enough that just testing for many 0 bytes would probably be sufficient to catch most files. If you care about localization you'd need to test multi-byte patterns as well. As stated though, you can always be unlucky and get a binary file that looks like text or vise versa. |
|||||||||||
|
|
There's a method called Markov Chains. Scan a few model files of both kinds and for each byte value from 0 to 255 gather stats (basically probability) of a subsequent value. This will give you a profile you can compare your runtime files against. This is how browsers' Auto-Detect Encoding feature works. |
||||
|
|
If the real question here is "Can this file be read and written using StreamReader/StreamWriter without modification?", then the answer is here:
|
|||
|
|
Quick and dirty is to use the file extension and look for common, text extensions such as .txt. For this, you can use the Path.GetExtension call. Anything else would not really be classed as "quick", though it may well be dirty. |
|||||||||
|
|
A really really really dirty way would be to build a regex that takes only standard text, punctuation, symbols, and whitespace characters, load up a portion of the file in a text stream, then run it against the regex. Depending on what qualifies as a pure text file in your problem domain, no successful matches would indicate a binary file. To account for unicode, make sure to mark the encoding on your stream as such. This is really suboptimal, but you said quick and dirty. |
|||||
|
|
http://codesnipers.com/?q=node/68 describes how to detect UTF-16 vs. UTF-8 using a Byte Order Mark (which may appear in your file). It also suggests looping through some bytes to see if they conform to the UTF-8 multi-byte sequence pattern (below) to determine if your file is a text file.
|
|||
|
|
How about another way: determine length of binary array, representing file's contents and compare it with length of string you will have after converting given binary array to text. If length the same, there are no "none-readable' symbols in file, it's text (I'm sure on 80%). |
|||
|
|