Re: How to read TAR diskette on Windows98/Me

2002-11-11 Thread Christopher Faylor
On Mon, Nov 11, 2002 at 08:31:58PM -0500, P. McBride wrote: >Now if someone could just plug this into the "/dev/fd0" handling code. Patches gratingly excepted. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation:

Re: How to read TAR diskette on Windows98/Me

2002-11-11 Thread P. McBride
To partially answer my own question which is sort of hinted at in the documentation: On WindowsNT/2K/XP you can read a floppy using Windows API: CreateFile("\\.\\A:",...) and ReadFile(...) which I guess is close enough to map to the normal UNIX way of reading raw devices (/dev/fd0), but on Windows9

How to read TAR diskette on Windows98/Me

2002-11-09 Thread Paul McBride
To read a tar diskette on WindowsNT/XP/2000 the command "tar tvf /dev/fd0" works fine. It doesn't work on Windows98 or WindowsMe. What do you need to do to read a tar disk on those systems? I guess any program that would read a raw diskette and copy it to a file would do. Any suggestions on how to