10
दस्तावेज़ निर्देशिका से निर्दिष्ट फ़ाइल हटाएं
मैं अपने एप्लिकेशन दस्तावेज़ निर्देशिका से एक छवि हटाना चाहता हूं। छवि को हटाने के लिए कोड मैंने लिखा है: -(void)removeImage:(NSString *)fileName { fileManager = [NSFileManager defaultManager]; paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); documentsPath = [paths objectAtIndex:0]; filePath = [documentsPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@", fileName]]; [fileManager removeItemAtPath:filePath error:NULL]; UIAlertView *removeSuccessFulAlert=[[UIAlertView alloc]initWithTitle:@"Congratulation:" message:@"Successfully removed" …