5 // Created by Pieter de Bie on 6/17/08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
12 @implementation PBEasyFS
14 + (NSString*) tmpNameWithSuffix: (NSString*) path
16 NSString* newName = [NSString stringWithFormat: @"%@/XXXXXX%@", NSTemporaryDirectory(), path];
17 char *template = (char*) [newName fileSystemRepresentation];
18 int fd = mkstemps(template, [path length]);
20 return [NSString stringWithUTF8String:template];
23 + (NSString*) tmpDirWithPrefix: (NSString*) path
25 NSString* newName = [NSString stringWithFormat: @"%@%@.XXXXXX", NSTemporaryDirectory(), path];
26 char *template = (char*) [newName fileSystemRepresentation];
27 template = mkdtemp(template);
28 return [NSString stringWithUTF8String:template];