View Single Post
  #1  
Old 12-22-2004, 07:17 PM
nanovivid nanovivid is offline
Registered User
 
Join Date: Dec 2004
Posts: 3
Question Problems Ignoring Directories

I'm trying to get SuperDuper to exclude certain directories from the backup but it appears that it's still copying them because as it's showing the progress, these directores (which have a lot of stuff in them) are showing as copying for a long time.

Here's the source of the copy script:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>Class</key>
	<string>Composite</string>
	<key>Description</key>
	<string></string>
	<key>Directives</key>
	<array>
		<dict>
			<key>Directive</key>
			<string>exclude</string>
			<key>Item</key>
			<string>Users/Bryan/BitTorrent/*</string>
		</dict>
		<dict>
			<key>Directive</key>
			<string>exclude</string>
			<key>Item</key>
			<string>Users/Bryan/Xfactor/*</string>
		</dict>
	</array>
	<key>Include Directives</key>
	<array>
		<string>Backup - all files.dset</string>
	</array>
</dict>
</plist>
What am I doing wrong?
Reply With Quote