Xcode 開発で、画像データを取り扱いたいとき、画像の格納先が必要になります。
Xcode で画像アプリを作成した際、画像の格納されているpathを判定する必要があったので以下に判定方法をまとめました。
1 | _databasePath = [[ NSString alloc] |
2 | initWithString: [docsDir stringByAppendingPathComponent: |
3 | @"xxxxx.DB" ]]; |
4 | |
5 | NSFileManager *filemgr = [ NSFileManager defaultManager]; |
6 | |
7 | if ([filemgr fileExistsAtPath: _databasePath ] == YES ){ |
8 | //pathが一致した時 |
9 |
10 | } else { |
11 | //pathが違った時 |
12 |
13 | } |