1LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT 2 3STRINGTABLE 4{ 5 STRING_INVPARMS, "Invalid number of parameters - Use xcopy /? for help\n" 6 STRING_INVPARM, "Invalid parameter '%1' - Use xcopy /? for help\n" 7 STRING_PAUSE, "Press <Enter> to begin copying\n" 8 STRING_SIMCOPY, "%1!d! file(s) would be copied\n" 9 STRING_COPY, "%1!d! file(s) copied\n" 10 STRING_QISDIR, "Is '%1' a filename or directory\n\ 11 on the target?\n\ 12 (F - File, D - Directory)\n" 13 STRING_SRCPROMPT,"%1? (Yes|No)\n" 14 STRING_OVERWRITE,"Overwrite %1? (Yes|No|All)\n" 15 STRING_COPYFAIL, "Copying of '%1' to '%2' failed with r/c %3!d!\n" 16 STRING_OPENFAIL, "Failed to open '%1'\n" 17 STRING_READFAIL, "Failed during reading of '%1'\n" 18 STRING_YES_CHAR, "Y" 19 STRING_NO_CHAR, "N" 20 STRING_ALL_CHAR, "A" 21 STRING_FILE_CHAR,"F" 22 STRING_DIR_CHAR, "D" 23 24 STRING_HELP, 25"XCOPY - Copies source files or directory trees to a destination.\n\ 26\n\ 27Syntax:\n\ 28XCOPY source [destination] [/I] [/S] [/Q] [/F] [/L] [/W] [/T] [/N] [/U]\n\ 29\t [/R] [/H] [/C] [/P] [/A] [/M] [/E] [/D] [/Y] [/-Y]\n\ 30\n\ 31Where:\n\ 32\n\ 33[/I] Assume directory if destination does not exist and copying two or\n\ 34\tmore files.\n\ 35[/S] Copy directories and subdirectories.\n\ 36[/E] Copy directories and subdirectories, including any empty ones.\n\ 37[/Q] Do not list names during copy, that is be quiet.\n\ 38[/F] Show full source and destination names during copy.\n\ 39[/L] Simulate operation, showing names which would be copied.\n\ 40[/W] Prompts before beginning the copy operation.\n\ 41[/T] Creates empty directory structure but does not copy files.\n\ 42[/Y] Suppress prompting when overwriting files.\n\ 43[/-Y] Enable prompting when overwriting files.\n\ 44[/P] Prompts on each source file before copying.\n\ 45[/N] Copy using short names.\n\ 46[/U] Copy only files which already exist in destination.\n\ 47[/R] Overwrite any read only files.\n\ 48[/H] Include hidden and system files in the copy.\n\ 49[/C] Continue even if an error occurs during the copy.\n\ 50[/A] Only copy files with archive attribute set.\n\ 51[/M] Only copy files with archive attribute set, removes the\n\ 52\tarchive attribute.\n\ 53[/K] Copy file attributes, without this attributes are not preserved.\n\ 54[/D | /D:m-d-y] Copy new files or those modified after the supplied date.\n\ 55\t\tIf no date is supplied, only copy if destination is older\n\ 56\t\tthan source.\n\n" 57 58} 59