vote up 1 vote down star

How can I tell if a file is binary (non-text) in python? I am searching through a large set of files in python, and keep getting matches in binary files. This makes the output look incredibly messy.

I know I could use grep -I, but I am doing more with the data than what grep allows for.

In the past I would have just searched for characters greater than 0x7f, but utf8 and the like make that impossible on modern systems. Ideally the solution would be fast, but any solution will do.

flag

IF "in the past I would have just searched for characters greater than 0x7f" THEN you used to work with plain ASCII text THEN still no issue since ASCII text encoded as UTF-8 remains ASCII (i.e. no bytes > 127). – ΤΖΩΤΖΙΟΥ May 22 at 18:40
@ΤΖΩΤΖΙΟΥ: True, but I happen to know that the some of the files I am dealing with are utf8. I meant used to in the general sense, not in the specific sense of these files. :) – grieve May 22 at 21:19

6 Answers

vote up 1 vote down

If you're not on Windows, you can use Python Magic to determine the filetype. Then you can check if it is a text/ mime type.

link|flag
vote up 1 vote down

Here's a suggestion that uses the Unix file command:

import re
import subprocess

def istext(path):
    return (re.search(r':.* text',
                      subprocess.Popen(["file", '-L', path], 
                                       stdout=subprocess.PIPE).stdout.read())
            is not None)

Example usage:

>>> istext('/etc/motd') 
True
>>> istext('/vmlinuz') 
False
>>> open('/tmp/japanese').read()
'\xe3\x81\x93\xe3\x82\x8c\xe3\x81\xaf\xe3\x80\x81\xe3\x81\xbf\xe3\x81\x9a\xe3\x81\x8c\xe3\x82\x81\xe5\xba\xa7\xe3\x81\xae\xe6\x99\x82\xe4\xbb\xa3\xe3\x81\xae\xe5\xb9\x95\xe9\x96\x8b\xe3\x81\x91\xe3\x80\x82\n'
>>> istext('/tmp/japanese') # works on UTF-8
True

It has the downsides of not being portable to Windows (unless you have something like the file command there), and having to spawn an external process for each file, which might not be palatable.

link|flag
vote up 3 vote down

If it helps, many many binary types begin with a magic numbers. Here is a list of file signatures.

link|flag
vote up 2 vote down

You can also use the mimetypes module:

import mimetypes
...
mime = mimetypes.guess_type(file)

It's fairly easy to compile a list of binary mime types. For example Apache distributes with a mime.types file that you could parse into a set of lists, binary and text and then check to see if the mime is in your text or binary list.

link|flag
vote up 2 vote down

Usually you have to guess.

You can look at the extensions as one clue, if the files have them.

You can also recognise know binary formats, and ignore those.

Otherwise see what proportion of non-printable ASCII bytes you have and take a guess from that.

You can also try decoding from UTF-8 and see if that produces sensible output.

link|flag
vote up 0 vote down

are you in unix? if so, then try:

isBinary = os.system("file " + name + " | grep text > /dev/null")

The shell return values are inverted (0 is ok, so if it finds "text" then it will return a 0, and in Python that is a False expression).

link|flag
This works based on the extension of the file? – becomingGuru May 22 at 16:32
For reference, the file command guesses a type based on the file's content. I'm not sure whether it pays any attention to the file extension. – David May 22 at 17:23
I'm almost sure it looks both in the content and the extension. – fortran May 22 at 18:50
This breaks if the path contains "text", tho. Make sure to rsplit at the last ':' (provided there's no colon in the file type description). – Alan Oct 28 at 18:16

Your Answer

Get an OpenID
or

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