0

I'm trying to copy foo.txt file to disk.64 image using c1541 utility.

I've tried to write:

c1541 disk.d64 -write foo.txt foo

The file is copied but as foo.prg

How can save it using SEQ or USR types? I've tried:

c1541 disk.d64 -write foo.txt foo.seq

only to find that the file is copied as foo.seq.prg.

Cactus
  • 27,075
  • 9
  • 69
  • 149
wizofwor
  • 917
  • 8
  • 25

1 Answers1

3

Try c1541 disk.d64 -write foo.txt "foo,s" for SEQ-files and c1541 disk.d64 -write foo.txt "foo,u" for USR-files.

Swoffa
  • 66
  • 4
  • Isn't it possible to use REL type. I've tried `r` but id didn't work. – wizofwor Mar 29 '17 at 07:35
  • 3
    For REL-files, use `,l`, but you also have to specify tarck/sector, since REL-files are different: `c1541 disk.d64 -write foo.txt "foo,l,01,01"` – Swoffa Mar 29 '17 at 09:49