Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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#?

share|improve this question
By "binary" do you mean executable or just any random stuff? – Vizu May 26 '09 at 14:19
just anything that isn't text such as picture, music, msword, executable, dll, etc – pablito May 26 '09 at 14:40

7 Answers

up vote 8 down vote accepted

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.

share|improve this answer
5  
Thanks, I looked for 4 consecutived nulls "\0\0\0\0" binary files seem to have a lot of them so I tested it in 50 random files and it works. – pablito May 26 '09 at 14:42
Four consecutive nulls failed to say some .png files were binary so I tried two consecutive nulls and that worked better. – Adam Bruss Oct 29 '12 at 15:55
1  
If the text file is ASCII or UTF-8, finding one zero byte should be enough to conclude it's not. This will fail for UTF-16 and UTF-32 files, but so will most text editors ;-) – Jan Dvorak Mar 15 at 8:41

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.

share|improve this answer
Thanks, I did something similar, I looked for a consecutive number of nulls. – pablito May 26 '09 at 14:44

If the real question here is "Can this file be read and written using StreamReader/StreamWriter without modification?", then the answer is here:

/// <summary>
/// Detect if a file is text and detect the encoding.
/// </summary>
/// <param name="encoding">
/// The detected encoding.
/// </param>
/// <param name="fileName">
/// The file name.
/// </param>
/// <param name="windowSize">
/// The number of characters to use for testing.
/// </param>
/// <returns>
/// true if the file is text.
/// </returns>
public static bool IsText(out Encoding encoding, string fileName, int windowSize)
{
    using (var fileStream = File.OpenRead(fileName))
    {
    var rawData = new byte[windowSize];
    var text = new char[windowSize];
    var isText = true;

    // Read raw bytes
    var rawLength = fileStream.Read(rawData, 0, rawData.Length);
    fileStream.Seek(0, SeekOrigin.Begin);

    // Detect encoding correctly (from Rick Strahl's blog)
    // http://www.west-wind.com/weblog/posts/2007/Nov/28/Detecting-Text-Encoding-for-StreamReader
    if (rawData[0] == 0xef && rawData[1] == 0xbb && rawData[2] == 0xbf)
    {
        encoding = Encoding.UTF8;
    }
    else if (rawData[0] == 0xfe && rawData[1] == 0xff)
    {
        encoding = Encoding.Unicode;
    }
    else if (rawData[0] == 0 && rawData[1] == 0 && rawData[2] == 0xfe && rawData[3] == 0xff)
    {
        encoding = Encoding.UTF32;
    }
    else if (rawData[0] == 0x2b && rawData[1] == 0x2f && rawData[2] == 0x76)
    {
        encoding = Encoding.UTF7;
    }
    else
    {
        encoding = Encoding.Default;
    }

    // Read text and detect the encoding
    using (var streamReader = new StreamReader(fileStream))
    {
        streamReader.Read(text, 0, text.Length);
    }

    using (var memoryStream = new MemoryStream())
    {
        using (var streamWriter = new StreamWriter(memoryStream, encoding))
        {
        // Write the text to a buffer
        streamWriter.Write(text);
        streamWriter.Flush();

        // Get the buffer from the memory stream for comparision
        var memoryBuffer = memoryStream.GetBuffer();

        // Compare only bytes read
        for (var i = 0; i < rawLength && isText; i++)
        {
            isText = rawData[i] == memoryBuffer[i];
        }
        }
    }

    return isText;
    }
}
share|improve this answer
Doesn't work for a simple text file where I put a à (french a with accent). – Alexis Pautrot Sep 26 '12 at 11:14

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.

share|improve this answer
1  
Sometimes guys like me can change the extension of a binary file to .txt – Kirtan May 26 '09 at 14:11
Obviously, but he asked for cheap and dirty - there's no foolproof way but to ask a person to read it. – Jeff Yates May 26 '09 at 14:19
that's good, unfortunatelly I'm not dealing with common extensions, I'm writing some kind of list of all files and need to categorize them bin or text, most people do it but hand but as I am lazy I prefer to write code. – pablito May 26 '09 at 14:31

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.

share|improve this answer
Oh, \me is unsure about regexing a several mbyte file is any near 'quick'. – Anton S. Kraievoy Feb 16 '11 at 8:52
depends on the definition of quick. quick running or quick to write? :) – Chad Ruppert Sep 12 '11 at 15:23

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.

  • 0xxxxxxx ASCII < 0x80 (128)
  • 110xxxxx 10xxxxxx 2-byte >= 0x80
  • 1110xxxx 10xxxxxx 10xxxxxx 3-byte >= 0x400
  • 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx 4-byte >= 0x10000
share|improve this answer
This works if the file is guaranteed to be UTF8/16, or binary. But what if it is neither? What if it is a Text file, encoded in neither ASCII nor UTF-8/16. What if it is encoded in the Big5 code page? Or ISO-8859-1? These have no BOM. So... how to cover that case as well? – Cheeso May 26 '09 at 14:56

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%).

share|improve this answer
That of course depends on the encoding used. – Matthias Vance Mar 5 '12 at 21:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.