10
1
I realize this isn't strictly a programming question, but I have a file with the extension .bak
, and the file starts with "TAPE". What program produced this?
10
1
I realize this isn't strictly a programming question, but I have a file with the extension .bak
, and the file starts with "TAPE". What program produced this?
19
The file is in Microsoft Tape Format (MTF). It can be a backup of a Microsoft SQL Server's database.
4
I recently received a file that matches this description. Further investigation suggests it was produced by Microsoft SQL Server's backup command.
2
The extension .bak is commonly used by multiple programs and persons to indicate a backup of some kind. Since multiple sources could create the backup the file extension is not enough to identify the contents.
You could try opening the file in notepad and checking for a Magic Number.
Sometimes it's a direct copy of a file (readme.txt -> readme.bak) In this case I prefer to append the .bak extension instead of removing the existing one (readme.txt.bak)