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" delegate:self cancelButtonTitle:@"Close" …