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" に保存されているファイルを確認したいです。
どうすればその道に行くことができるか誰か教えてもらえますか...
このパスをテストして、ファイルがパスに保存されているかどうかを確認する必要があります。MPMusicPlayer を使用しているため、iPhone シミュレーターで確認できず、シミュレーターを使用して曲を再生および保存できません。
試す
NSArray *files = [fileManager contentsOfDirectoryAtPath:YOURPATH error:&error]; if (files == nil) { // error... } for (NSString *file in files) { //HANDLE FILE HERE IN YOUR CASE CHECK NAME }