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

I'm wondering what would be the best way to check if a file is binary or ASCII with Node.js?

There appears to be two ways not specific to node.js:

  1. Checking the MIME type: How to Check if File is ASCII or Binary in PHP - however this has it's problems, as for instance pre-precessors often don't have a recognised mime type and revert to application/octet-stream when checking them using mime

  2. Via checking the byte size using a stream buffer with How to identify the file content is in ASCII or binary? - which seems quite intensive, and does yet provide a node.js example.

So is there another way already? Perhaps a secret node.js call or module that I don't know about? Or if I have to do this myself, what way would be suggested?

Thanks

share|improve this question
Can you define what you mean by a "binary file"? The way you test depends on precisely what you mean and there is no universally agreed definition. – David Schwartz Apr 19 '12 at 9:44
Let's say an image, or more specifically anything that isn't text. Sorry about that! – balupton Apr 19 '12 at 9:47
That's really not specific enough. What do you plan to do with the information? (Would it be sufficient to check the first 8KB for non-ASCII characters?) – David Schwartz Apr 19 '12 at 10:00
Sure. The issue is that there are several approaches it seems, but I'm not sure how any of them could be ported to Node.js. Your suggestion there seems great, so I'd happily accept that with a code example can provide the how - as the documentation isn't so clear on how you perform such a check (are those bytes ASCII or not). – balupton Apr 19 '12 at 14:03
You can probably consider the bytes ASCII if the high bit is clear. But that will fail for things like UTF-8 or Unicode that you may (or may not) consider text. You really do need to provide a precise definition of what "text" and "binary" mean, or you need to document your use case so we can figure out the right definitions. – David Schwartz Apr 19 '12 at 19:23
show 2 more comments

2 Answers

ASCII defines characters 0-127, so if a file's entire contents are byte values in that range then it can be considered an ASCII file.

function fileIsAscii(filename, callback) {
  // Read the file with no encoding for raw buffer access.
  require('fs').readFile(filename, function(err, buf) {
    if (err) throw err;
    var isAscii = true;
    for (var i=0, len=buf.length; i<len; i++) {
      if (buf[i] > 127) { isAscii=false; break; }
    }
    callback(isAscii); // true iff all octets are in [0, 127].
  });
}
fileIsAscii('/usr/share/dict/words', function(x){/* x === true */});
fileIsAscii('/bin/ls', function(x){/* x === false */});

If performance is critical then consider writing a custom C++ function per your linked answer.

share|improve this answer
up vote 1 down vote accepted

Thanks to the comments on this question by David Schwartz, I was able to put the following together to detect if something is ASCII/UTF8 or binary.

# Get the encoding of a buffer
getEncoding: (buffer) ->
    # Prepare
    contentStartBinary = buffer.toString('binary',0,24)
    contentStartUTF8 = buffer.toString('utf8',0,24)
    encoding = 'utf8'

    # Detect encoding
    for i in [0...contentStartUTF8.length]
        charCode = contentStartUTF8.charCodeAt(i)
        if charCode is 65533 or charCode <= 8
            # 8 and below are control characters (e.g. backspace, null, eof, etc.)
            # 65533 is the unknown character
            encoding = 'binary'
            break

    # Return encoding
    return encoding

Though be sure to post other solutions, as no doubt this is very use-case specific and there will be plenty of other great ways.

The source project is DocPad for those wondering...

share|improve this answer
Consider updating your question if your intent was really to identify text files in general and not ASCII encoding specifically. – maerics May 1 '12 at 6:10

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.