View Single Post
  #6  
Old 05-16-2005, 03:50 PM
dnanian's Avatar
dnanian dnanian is offline
Administrator
 
Join Date: Apr 2001
Location: Weston, MA
Posts: 14,923
Send a message via AIM to dnanian
To copy with ditto and cp, open a Terminal window. Then, issue the command:

sudo ditto -rsrcFork "path-to-source" "path-to-destination"

Your paths have quotes in them, so I've used '' for quoting. For example:

sudo ditto -rsrcFork '/Volumes/Macintosh Data/60 GB - "OK"/Developer/Documentation/Help/QuickTime' '/Volumes/Hard Drive/60 GB - "OK"/Developer/Documentation/Help/QuickTime'

cp would be used the same way, but if you're not under Tiger, it won't preserve resources, so probably isn't a good example. But, the syntax would be:

sudo cp '/Volumes/Macintosh Data/60 GB - "OK"/Developer/Documentation/Help/QuickTime' '/Volumes/Hard Drive/60 GB - "OK"/Developer/Documentation/Help/QuickTime'
__________________
--Dave Nanian

Last edited by dnanian; 05-16-2005 at 03:55 PM. Reason: Forgot the 'sudo'
Reply With Quote