up vote 17 down vote favorite
12
share [g+] share [fb]

Years ago when I was working with C# I could easily create a temporary file and get its name with this function:

Path.GetTempFileName();

This function would create a file with a unique name in the temporary directory and return the full path to that file.

In the Cocoa API's, the closest thing I can find is:

NSTemporaryDirectory

Am I missing something obvious or is there no built in way to do this?

link|improve this question

54% accept rate
feedback

7 Answers

up vote 20 down vote accepted

A safe way is to use mkstemp(3).

link|improve this answer
1  
@Chris Hanson: what, no x-man-page://3/mkstemp link? ;-) – Graham Lee Oct 19 '08 at 9:39
3  
feedback

[Note: This applies to the iPhone SDK, not the Mac OS SDK]

From what I can tell, these functions aren't present in the SDK (the unistd.h file is drastically pared down when compared to the standard Mac OS X 10.5 file). I would use something along the lines of:

[NSTemporaryDirectory() stringByAppendingPathComponent: [NSString stringWithFormat: @"%.0f.%@", [NSDate timeIntervalSinceReferenceDate] * 1000.0, @"txt"]];

Not the prettiest, but functional

link|improve this answer
1  
This has the same race condition as mktemp(3): Separating creation of the filename from creation of the temporary file opens a window of vulnerability. Use mkstemp(3) as Graham Lee suggests. – Chris Hanson Oct 19 '08 at 3:54
Sorry, I was in iPhone mode; mkstemp(3) as suggested by the original poster is fine, but it won't work on iPhone. – Ben Gottlieb Oct 19 '08 at 11:44
2  
On the iPhone, each app has its own subtree of the filesystem. NSTemporaryDirectory() returns something within the app bundle. You still race against yourself and against anything else that has write permission into your tmp dir, but I think that's only privileged processes. – Ken Oct 19 '08 at 18:07
@Ken where did the asker say they were on iPhone? – Graham Lee Oct 19 '08 at 22:21
Nowhere, other than in this answer that we're commenting on. :-) I was replying to the above. The lack of mkstemp on the phone is not as much of a problem on the phone as it would be on the mac. – Ken Oct 20 '08 at 10:34
show 1 more comment
feedback

Though it's nearly a year later, I figured it's still helpful to mention a blog post from Cocoa With Love by Matt Gallagher. http://cocoawithlove.com/2009/07/temporary-files-and-folders-in-cocoa.html He shows how to use mkstemp() for files and mkdtemp() for directories, complete with NSString conversions.

link|improve this answer
feedback

I created a pure Cocoa solution by way of a category on NSFileManager that uses a combination of NSTemporary() and a globally unique ID.

Here the header file:

@interface NSFileManager (TemporaryDirectory)

-(NSString *) createTemporaryDirectory;

@end

And the implementation file:

@implementation NSFileManager (TemporaryDirectory)

-(NSString *) createTemporaryDirectory {
 // Create a unique directory in the system temporary directory
 NSString *guid = [[NSProcessInfo processInfo] globallyUniqueString];
 NSString *path = [NSTemporaryDirectory() stringByAppendingPathComponent:guid];
 if (![self createDirectoryAtPath:path withIntermediateDirectories:NO attributes:nil error:nil]) {
  return nil;
 }
 return path;
}

@end

This creates a temporary directory but could be easily adapted to use createFileAtPath:contents:attributes: instead of createDirectoryAtPath: to create a file instead.

link|improve this answer
feedback

You could use mktemp to get a temp filename.

link|improve this answer
4  
There's a race condition in mktemp(3), it's better to use mkstemp(3). – Graham Lee Oct 19 '08 at 1:38
feedback

Apple has provided an excellent way for accessing temp directory and creating unique names for the temp files.

- (NSString *)pathForTemporaryFileWithPrefix:(NSString *)prefix
{
    NSString *  result;
    CFUUIDRef   uuid;
    CFStringRef uuidStr;

    uuid = CFUUIDCreate(NULL);
    assert(uuid != NULL);

    uuidStr = CFUUIDCreateString(NULL, uuid);
    assert(uuidStr != NULL);

    result = [NSTemporaryDirectory() stringByAppendingPathComponent:[NSString stringWithFormat:@"%@-%@", prefix, uuidStr]];
    assert(result != nil);

    CFRelease(uuidStr);
    CFRelease(uuid);

    return result;
}

LINK :::: http://developer.apple.com/library/ios/#samplecode/SimpleURLConnections/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009245 see file :::AppDelegate.m

link|improve this answer
feedback

You could use an NSTask to uuidgen to get a unique file name, then append that to a string from NSTemporaryDirectory(). This won't work on Cocoa Touch. It is a bit long-winded though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.