欢迎来到代码驿站!

iOS代码

当前位置:首页 > 移动开发 > iOS代码

ios下移动文件方法汇总

时间:2021-05-08 09:05:25|栏目:iOS代码|点击:

这段objective c代码用于移动指定路径下的文件

复制代码 代码如下:

if ([fileManager copyItemAtPath:@"FilePath1"
  toPath:@"FilePath2"  error:NULL]) {
     NSLog(@"Copied successfully");
  }

方法二

使用 NSFileManager:
让您的文档的路径和您的缓存路径。遍历所有的文件,并将它们移动使用 NSFileManager

复制代码 代码如下:

- (void) moveAllDocs {
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSError *error = nil;
    NSString *sourceDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
    NSString *destinationDirectory = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
    NSArray *contents = [fileManager contentsOfDirectoryAtPath:sourceDirectory error:&error];
    for(NSString *sourceFileName in contents) {
        NSString *sourceFile = [sourceDirectory stringByAppendingPathComponent:sourceFileName];
        NSString *destFile = [destinationDirectory stringByAppendingPathComponent:sourceFileName];
        if(![fileManager moveItemAtPath:sourceFile toPath:destFile error:&error]) {
            NSLog(@"Error: %@", error);
        }
    }
}

方法三

FCFileManager 是一个构建在 NSFileManager 之上的 iOS 文件管理工具,简化了文件管理。它提供了许多静态方法,用于执行最常用的操作用几行代码。它的工作原理是默认的文件目录,允许使用相对路径,但它可以在任何其他目录中轻松工作。

Move file:

复制代码 代码如下:

[FCFileManager moveItemAtPath:@"test.txt" toPath:@"tests/test.txt"];

Remove file:

复制代码 代码如下:

//remove file at the specified path
[FCFileManager removeItemAtPath:@"test.txt"];

以上所述上就是本文的全部内容了,希望大家能够喜欢。

上一篇:iOS滑动全屏实现返回功能

栏    目:iOS代码

下一篇:解析iOS10中的极光推送消息的适配

本文标题:ios下移动文件方法汇总

本文地址:http://www.codeinn.net/misctech/116994.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有