mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
19 lines
485 B
Objective-C
19 lines
485 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() stringByAppendingPathComponent:@"Library"] stringByAppendingPathComponent:@"Arq"];
|
|
}
|
|
+ (NSString *)arqCachePath {
|
|
return [NSString stringWithFormat:@"%@/Cache.noindex", [UserLibrary arqUserLibraryPath]];
|
|
}
|
|
@end
|