Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 iphone 设备的路径“/var/mobile/Applications/somevalue/Documents”中检查我保存的文件。
谁能告诉我怎么才能走那条路...
我需要测试这个路径,看看我的文件是否保存在路径中,我无法通过 iPhone 模拟器检查,因为我使用的是 MPMusicPlayer,所以我无法使用模拟器播放和保存歌曲
尝试
NSArray *files = [fileManager contentsOfDirectoryAtPath:YOURPATH error:&error]; if (files == nil) { // error... } for (NSString *file in files) { //HANDLE FILE HERE IN YOUR CASE CHECK NAME }