vote up 10 vote down star
4

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?

flag

67% accept rate

5 Answers

vote up 14 vote down check

A safe way is to use mkstemp(3).

link|flag
@Chris Hanson: what, no x-man-page://3/mkstemp link? ;-) – Graham Lee Oct 19 '08 at 9:39
2  
cocoawithlove.com/2009/07/… – Quinn Taylor Sep 22 at 17:32
vote up 3 vote down

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|flag
vote up -1 vote down

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|flag
vote up 2 vote down

[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|flag
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
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
vote up 2 vote down

You could use mktemp to get a temp filename.

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

Your Answer

Get an OpenID
or

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