3

アプリを使用してビデオをキャプチャしています。キャプチャした動画をドキュメントフォルダに保存することを考えていました。プロジェクトバンドルを調べて、キャプチャしたムービーが2回保存されることを確認しました。tmpとマイドキュメントフォルダにあります。tmpフォルダはクリアされますか?または、キャプチャしたムービーをtmpにのみ保持しても大丈夫ですか?前もって感謝します。

4

1 に答える 1

1

These files might be deleted at some point when your app is not running.

The /tmp/ directory is meant for files that you don't need to persist between launches of your app. The correct directory to use depends on the requirements of your app.

There's a good description of this in Apple's File System Programming Guide under iOS Standard Directories: Where Files Reside and Where You Should Put Your App’s Files.

于 2013-02-17T16:36:01.630 に答える