9 lines
314 B
Mathematica
Raw Normal View History

#import "WMFRandomFileUtilities.h"
NSString *WMFRandomTemporaryPath() {
return [NSTemporaryDirectory() stringByAppendingPathComponent:[[NSUUID UUID] UUIDString]];
}
NSString *WMFRandomTemporaryFileOfType(NSString *extension) {
return [WMFRandomTemporaryPath() stringByAppendingPathExtension:extension];
}