Tagged Questions
4
votes
2answers
273 views
What file type starts with BOSS 7?
I am looking at some files generated in the early 90s. One of them seems to hold references to data packed in some binary format in a number of large files.
The first six bytes of the file are 0x42 ...
0
votes
1answer
57 views
How to identify binary and text files using Smalltalk
I want to verify that a given file in a path is of type text file, i.e. not binary, i.e. readable by a human. I guess reading first characters and check each character with :
isAlphaNumeric
...