Barry Robinson wrote:
> Hello all,
>
> I am using SMB to backup my windows XP boxes and am
> getting errors about non existant file or directory
> listing.  Perhaps someone can shed some light on this
> and help me correct this matter.  
>
> Here is a pc config:
>
> $Conf{BackupFilesExclude} = ['\RECYCLER', '\System
> Volume Information', '*/Cache', 'pagefile.sys',
> '*/Temp', '\Temporary Internet Files'];
>
>   
For a start, you've got all your backslashes/forward slashes mixed up.

They should always be "/" to indicate subdirectories.

Also because you're share is at root level already, top level folders 
don't need a slash behind them. Remember too that a "\" is a special 
character under Unix meaning treat the next character as a literal string.

The process is being confused by this mixing of strings and characters.

Thus you should be setting the exclude directive something like this....

$Conf{BackupFilesExclude} = ['RECYCLER', 'System
Volume Information', 'pagefile.sys',
'Temp', 'Documents and Settings/*/Local Settings/Temporary Internet Files', 
'Documents and Settings/*/Local Settings/Temp' ];


Hope that helps.

p.s. double check any system wide BackupFilesExclude directives in your 
global config.pl also.

Regards,

Les


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/

Reply via email to