Apple // AppleWorks 3.0 ADB file #18
-
I have gotten to the point of having an Apple // AppleWorks 3.0 ADB file on my Mac's HD. It had no file extension, so I added ADB. I can view it as a text file with garbage formatting. I have the GUI interface of CiderPress II 1.0.1 running in Windows 10 via Parallels Desktop. CiderPress II gives "Error: unable to recognize contents of 'DATABASE.ADB': file extension not a known disk or file archive (ext='.adb')" What should the extension be? I just need to convert this 'ancient' database file to something that a current application can read, such as a CSV, TSV, etc. Same goes for CiderPress v4.1.1 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
ProDOS files have a file type and an auxiliary type, both of which are lost when the file is stored on a modern filesystem. The CiderPress file converters are intended to operate on files stored in a format that preserves the file attributes; this could be a disk image, file archive, or wrapper like AppleSingle/AppleDouble. The file needs to be put back into a disk image or file archive, with the correct file type, so that the file converters will be able to figure out what it is. AppleWorks ADB use file type $19, with an auxtype that doesn't really matter because it's used to format the filename (to get spaces and mixed case on ProDOS). We can add a NAPS preservation string to set the appropriate type information. CLI (can be done on the Mac):
GUI:
Note the original CiderPress has a bug in the file conversion: fadden/ciderpress#66 |
Beta Was this translation helpful? Give feedback.
ProDOS files have a file type and an auxiliary type, both of which are lost when the file is stored on a modern filesystem. The CiderPress file converters are intended to operate on files stored in a format that preserves the file attributes; this could be a disk image, file archive, or wrapper like AppleSingle/AppleDouble.
The file needs to be put back into a disk image or file archive, with the correct file type, so that the file converters will be able to figure out what it is. AppleWorks ADB use file type $19, with an auxtype that doesn't really matter because it's used to format the filename (to get spaces and mixed case on ProDOS). We can add a NAPS preservation string to set the ap…