home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************
- * *
- * Program DCOPY - physical sector to sector copy *
- * Copyright (c) 1986 Joerg Genius, Munich, West-Germany *
- * *
- *************************************************************/
-
- #include <stdio.h>
-
- usage()
-
- {
- printf ("\rDCopy will copy the whole disk image of a floppydisk\r\n");
- printf ("to another floppy or a diskfile (representing a diskimage) or vice versa.\r\n\n");
- printf ("Possible commands are :\r\n\n");
- printf ("DCOPY s: d:[ /v] || [ /r]\r\n");
- printf (" where s: (source) and d: (destination) are diskdrives from A: to D:\r\n\n");
- printf ("DCOPY filename[.ext] d:[[ /v] || [ /r]][ /n]\r\n");
- printf (" will copy image 'filename' to disk d: (A: to D:)\r\n\n");
- printf ("DCOPY d: filename[.ext][ /n]\r\n");
- printf (" will copy disk d: (A: to D:) to file 'filename'\r\n\n");
- printf ("Option /v means verify after write; option /n suppresses\n");
- printf ("file compression. In this case the .IMG file contains\n");
- printf ("exactly as much blocks as the appropriate disk.\n");
- printf ("Read-only mode is set by switch /r in order to verify disk-\n");
- printf ("integrity only\n");
- }
-
-
-