Help for this page

Select Code to Download


  1. or download this
    C:\test\junk>dir /w a b
     Volume in drive C has no label.
    ...
    [.]  [..]
                   0 File(s)              0 bytes
                   2 Dir(s)  15,859,965,952 bytes free
    
  2. or download this
    C:\test\junk>type makefile
    all:
        xcopy /f /r /i /e /d a\*.* b\*.*
    
  3. or download this
    C:\test\junk>nmake all
    
    ...
    
            xcopy /f /r /i /e /d a\*.* b\*.*
    0 File(s) copied
    
  4. or download this
    C:\test\junk>nmake all
    
    ...
    Invalid switch - /b
    NMAKE : fatal error U1077: 'xcopy' : return code '0x4'
    Stop.