2

I am migrating from Windows as my desktop operating system, but will still need to interact with Windows file servers.

Is there any OS X software to help with copying files from file servers. I am specifically looking for an analogue of Robocopy that will copy files from a directory on a Windows file server, and retry any files that fail.

I'm happy using either a GUI or command line.

2
  • Are you looking for an alternative to the OOB methods to do that?
    – duci9y
    Commented Jan 7, 2013 at 12:36
  • I wasn't aware of an OOB box method that will do that with a Windows File Server. I'd accept an answer that gave the OOB method.
    – dunxd
    Commented Jan 7, 2013 at 13:19

1 Answer 1

3

You could use the SAMBA protocol (or Apple's implementation of it), to connect to a Windows Share.

Either open Finder and choose "Go" -> "Connect to Server" in the menu bar. Example

Now connect to your share(s) using the SMB:// as protocol definition. If activated it will ask you for authentication afterwards. Then the share will be mounted like any other mount point.

Or you could use the terminal to mount the file system using the

mount_smbf

command.

After you've mounted the Windows Share you should be able to use any command line tool or GUI software do to your copying. Instead of robocopy you could use rsync for example (which is built in and pretty powerful).

One note: Just remember that saving files directly from within apps on a share could cause some troubles if they are using Apples's Versions feature, which is not supported by FAT or NTFS file systems.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .