2

Ok, here is situation: I use JungleDisk to sync an online folder on to a external drive connected to my Mac.

If I right click Finder, click Go to Folder... then type /Volumes/ I see the drive linked here.

Once I remove the external drive, an actual folder is created here in the name of the external drive, JungleDisk continues to copy files to this folder, rather than stop.

Is this a feature of Mac OS X? Can I turn if off?

After I re-connect my external drive, the link to the drive is appended with a 1 (so if I called the drive SpareDrive it becomes SpareDrive 1 as the newly created folder is called SpareDrive.

I realise my explanation isn't very clear, but anyone understand this, and knows how to prevent it happening please let me know.

PS: I have a low reputation as I don't use this often, I tend to use stackoverflow, but will check back here for answers.

Vamos
  • 123

2 Answers2

2

not sure if you figured out how to fix it. generally when i have this problem on linux, I have the app write to a symlink rather than a mountpoint.

E.g. If JungleDisk is writing to /Volumes/SpareDrive (which is the mountpoint) and it creates a SpareDrive directory when the drive is not connected, I'd do this:

sudo ln -s /Volumes/SpareDrive /Users/Shared/SpareDrive

Then have JungleDisk write to /Users/Shared/SpareDrive instead. When JungleDisk write to /Users/Shared/SpareDrive when /Volumes/SpareDrive is not mounted, it'll just throw an error (symlink target doesn't exist) instead of creating the folder.

goofrider
  • 166
0

This seems to be an issue with JungleDisk and not Mac OS X.

JungleDisk will continue to sync data, even if the destination folder is on an external drive that is disconnected.

Here is the response from support:

"Unfortunately, Jungle Disk will not automatically stop syncing if an external drive is disconnected. For now, I would suggest pausing sync (press Pause Sync in the Jungle Disk activity monitor) prior to disconnecting the drive."

Vamos
  • 123