iOS11新增的Files文件管理器应用

Files 可以集中管理 iOS 上应用内创建的文件,以及各个云盘服务中保存的文件。

使用后可以实现以下功能:
1、查看各个应用沙盒中的文件
2、操作各个应用沙盒中的文件
(1)拷贝
(2)复制
(3)重新命名
(4)移动
(5)删除
(6)共享
(7)标签
(8)简介

使用示例图

功能实现
1、配置

Supports opening documents in place    =     YES
Application supports iTunes file sharing  =  YES

iOS11新增的Files文件管理器应用_第1张图片
2、代码示例

- (BOOL)showFilesWithURL:(NSURL *)URL
{
    assert([[NSFileManager defaultManager] fileExistsAtPath: [URL path]]);
    NSError *error = nil;
    BOOL success = [URL setResourceValue:[NSNumber numberWithBool: YES] forKey: NSURLIsExcludedFromBackupKey error: &error];
    if (!success) {
        NSLog(@"Error excluding %@ from backup %@", [URL lastPathComponent], error);
    }
    return success;
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    
    //
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    [self showFilesWithURL:[NSURL fileURLWithPath:documentsDirectory]];

    return YES;
}

你可能感兴趣的:(iOS,硬件设备,iOS,开发编码收集)