# ZWAppDirectories **Repository Path**: MrZhang-iOS/ZWAppDirectories ## Basic Information - **Project Name**: ZWAppDirectories - **Description**: 可以查看App沙盒路径下的全部文件,支持AppGroup路径文件的查看。 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-23 - **Last Updated**: 2024-10-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ZWAppDirectories #### 介绍 可以查看App沙盒路径下的全部文件,支持AppGroup路径文件的查看。 #### 安装教程 cd到你的工程路径,在Podfile中添加以下命令 ``` pod 'ZWRecordTextTool', :tag => '3.0.0', :git =>'https://gitee.com/MrZhang-iOS/ZWRecordTextTool.git', :branch => 'master' pod 'ZWProjectsCore', :tag => '2.0.0', :git =>'https://gitee.com/MrZhang-iOS/ZWProjectsCore.git', :branch => 'master' pod 'ZWAppDirectories', :tag => '2.0.0', :git =>'https://gitee.com/MrZhang-iOS/ZWAppDirectories.git', :branch => 'master' ``` 最好先执行以下脚本查询最新的版本 ``` pod search ZWRecordTextTool pod search ZWProjectsCore pod search ZWAppDirectories ``` 然后执行 ``` pod install ``` #### 使用说明 在需要进入沙盒路径的视图中引入头文件 ``` #import ``` 如果项目有配置AppGroup共享域,单个多个均可,可以选择性调用如下方法(没有配置AppGroup共享域可忽略) ``` UIZWAppDirectoriesCtrl.appGroupIDs = @[@"AppGroupID1", @"AppGroupID2", ...]; ``` 一行代码进入沙盒路径列表,代码如下: ``` [UIZWAppDirectoriesCtrl gotoAppDirectoriesWithPresentingViewCtrl:self]; ``` *如果有其他问题可以留言,谢谢!*