arq_restore/UserLibrary_Arq.m
2011-08-16 15:19:44 -04:00

19 lines
440 B
Objective-C

//
// UserLibrary.m
// Backup
//
// Created by Stefan Reitshamer on 8/18/09.
// Copyright 2009 PhotoMinds LLC. All rights reserved.
//
#import "UserLibrary_Arq.h"
@implementation UserLibrary (Arq)
+ (NSString *)arqUserLibraryPath {
return [NSHomeDirectory() stringByAppendingString:@"/Library/Arq"];
}
+ (NSString *)arqCachePath {
return [NSString stringWithFormat:@"%@/Cache.noindex", [UserLibrary arqUserLibraryPath]];
}
@end