我想在Objective-C中生成唯一的文件路径。我查看了NSTemporaryDirectory()
,但我能得到的最接近的是this和this。但在第二个中他们创建了这样一个文件。我不想创建它,我只想要一个NSString用于唯一的可写路径...我不需要路径到文件夹,只需要文件。这怎么可能?
答案 0 :(得分:1)
您可以使用当前系统日期和时间([[NSCalendarDate calendarDate] descriptionWithCalendarFormat:@"%m%d%Y%H%M%S%F"]
)创建文件名....这包括甚至毫秒...使用返回字符串作为唯一文件名....
了解有关日期格式的更多信息 - > http://developer.apple.com/iphone/library/documentation/cocoa/Conceptual/DatesAndTimes/Articles/LegacyNSCalendarDate.html