从 iPhone 中的 NSHomeDirectory() 中删除图像

发布于 2024-11-08 23:55:35 字数 706 浏览 0 评论 0原文

您好,我正在保存这样的图像:

[UIImagePNGRepresentation(image) writeToFile:[self findUniqueSavePath] atomically:YES];
// Show the current contents of the documents folder
CFShow([[NSFileManager defaultManager] directoryContentsAtPath:[NSHomeDirectory() stringByAppendingString:@"/Documents"]]);

- (NSString *) findUniqueSavePath
{   
    int i = 1;
    NSString *path;
    do 
    {
        // iterate until a name does not match an existing file
        path = [NSString stringWithFormat:@"%@/Documents/IMAGE-%d.PNG", NSHomeDirectory(), i++];
    } while ([[NSFileManager defaultManager] fileExistsAtPath:path]);

    [classObj updateimage];

    return path;
}

我想在新图像写入文档时删除图像。

Hi i am saving images like this:

[UIImagePNGRepresentation(image) writeToFile:[self findUniqueSavePath] atomically:YES];
// Show the current contents of the documents folder
CFShow([[NSFileManager defaultManager] directoryContentsAtPath:[NSHomeDirectory() stringByAppendingString:@"/Documents"]]);

- (NSString *) findUniqueSavePath
{   
    int i = 1;
    NSString *path;
    do 
    {
        // iterate until a name does not match an existing file
        path = [NSString stringWithFormat:@"%@/Documents/IMAGE-%d.PNG", NSHomeDirectory(), i++];
    } while ([[NSFileManager defaultManager] fileExistsAtPath:path]);

    [classObj updateimage];

    return path;
}

I want to remove images when the new image write in the document.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

維他命╮ 2024-11-15 23:55:35

你可以使用这个代码

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *path=[documentsDirectory stringByAppendingPathComponent:@"image.png"];
    [[NSFileManager defaultManager] removeItemAtPath:path error:nil];

you can use this code

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *path=[documentsDirectory stringByAppendingPathComponent:@"image.png"];
    [[NSFileManager defaultManager] removeItemAtPath:path error:nil];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文