What separates text files from binary files, considering they are stored in binary

binarydata

There are text files and there are image, video, and music files. Why are image, video, and music files considered binary files, and why are text files not?

Best Answer

Obviously every file is binary when it comes down to it, since every file is stored as bytes and bits. But colloquially, binary file just means any file which is not a text file. And text file means a file which consists of characters (in some character encoding or character set) and which you can open and edit in an ordinary text editor.

Related Topic