hello, I just wanted to know is it's possible to create a subfolder in the NSDocumentDirectory and write data into that created folder, like:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *dirPath =[[paths objectAtIndex:0] stringAppendingPathComponent:@"TestFolder"];
NSString *filePath =[dirPath stringAppendingPathComponent:@"test.jpg"];
[imageData writeToFile:filePath atomically:YES];
thanks in advance for your support