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.
我的想法:在没有 wifi 或蓝牙的情况下同步音乐。首先我得到我想要的文件,然后我将它们压缩成一个 zip 文件。然后我想重命名扩展名JPG,以便iPad可以识别该文件。然后我将它复制到我的 SD 卡,然后使用相机连接套件将它连接到我的 iPad。
我希望我的应用程序复制整个 jpg 形式的 dcim,以便我可以将文件扩展名更改回 zip,然后将其解压缩以停用我的文件。
但到目前为止,我只找到了一种复制图片的方法,而不是整个文件。我需要整个文件,我希望你们能帮助我。
提前致谢,
您可以像这样使用NSFileManager'scopyItemAtPath方法:
NSFileManager
copyItemAtPath
NSError *error; [[NSFileManager defaultManager] copyItemAtPath:sourceFile toPath:destFile error:&error];
sourceFilejpg 文件的完整路径在哪里,并且destFile是 zip 文件的完整路径。
sourceFile
destFile