forked from pieter/gitx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PBEasyFS.m
31 lines (25 loc) · 801 Bytes
/
PBEasyFS.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// PBEasyFS.m
// GitX
//
// Created by Pieter de Bie on 6/17/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "PBEasyFS.h"
@implementation PBEasyFS
+ (NSString*) tmpNameWithSuffix: (NSString*) path
{
NSString* newName = [NSString stringWithFormat: @"%@/XXXXXX%@", NSTemporaryDirectory(), path];
char *template = (char*) [newName fileSystemRepresentation];
int fd = mkstemps(template, [path length]);
close(fd);
return [NSString stringWithUTF8String:template];
}
+ (NSString*) tmpDirWithPrefix: (NSString*) path
{
NSString* newName = [NSString stringWithFormat: @"%@%@.XXXXXX", NSTemporaryDirectory(), path];
char *template = (char*) [newName fileSystemRepresentation];
template = mkdtemp(template);
return [NSString stringWithUTF8String:template];
}
@end