Hallo!
Hat das:
Code:
- (BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)
URL
{
assert([[NSFileManager defaultManager] fileExistsAtPath: [
URL path]]);
NSError *error = nil;
BOOL success = [
URL setResourceValue: [NSNumber numberWithBool: YES]
forKey: NSURLIsExcludedFromBackupKey error: &error];
if(!success){
NSLog(@"Error excluding %@ from backup %@", [
URL lastPathComponent], error);
}
return success;
}
schon jemand in Delphi umgesetzt?
Mavarik