View Single Post
  #5  
Old 06-26-2007, 06:24 PM
Nicolinux Nicolinux is offline
Registered User
 
Join Date: May 2007
Posts: 6
I tried it again too. It doesent work for me
I created a disk image with the following contents:

Code:
ABCDE
FGHIJ
KLMNO
PQRST
UVWXYZ
XXXY_dont_backup_me
dont_backup_me
mit_unter
sldkjfalsdjf_dont_backup_me_llflflf
tttt_dont_backup_me
These are just some random directories. I'd like to ignore those that contain "dont_backup_me" in their name.
Therefore I created a custom copy script, included the "Backup - all files.dset" and added an entry "ignore - *dont_backup_me*"
This should take care of it, but it doesent. The destination diskimage after the backup contains every single directory with it's contents.

Here is my custom 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>Test</string>
	<key>Directives</key>
	<array>
		<dict>
			<key>Directive</key>
			<string>exclude</string>
			<key>Item</key>
			<string>*dont_backup_me*</string>
		</dict>
	</array>
	<key>Include Directives</key>
	<array>
		<string>Backup - all files.dset</string>
	</array>
</dict>
</plist>
Thanks much.

Stefan
Reply With Quote