Is it possible to create the temporary directories in cocoa application for saving the files temporarily.
As per the scenario I need to process some video files and those files firstly will be converted to thumbnails etc then whose files will be uploaded to server.
How this can be achieved?
The easiest way to get the temporary directory is to use NSTemporaryDirectory()
Edit
The above is no longer the approved method of locating the temporary directory. You should now use [NSFileManager URLForDirectory:inDomain:appropriateForURL:create:error:].