Last active
July 3, 2021 01:17
-
-
Save baobao/c3dde9759b1e61487c7ed5113df22501 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 【1. ファイルまでのパスを作成】 | |
// ダウンロードした画像が格納されたディレクトリパス取得(適宜変更してください) | |
NSArray *dirPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); | |
// ファイルパスの作成 | |
NSString *filePath = [[dirPaths objectAtIndex:0] stringByAppendingPathComponent:@"img.png"]; | |
// 【2. NSFileManagerを取得】 | |
NSFileManager *fileManager = [NSFileManager defaultManager]; | |
// 【3. NSFileManagerのfileExistsAtPathメソッドを実行】 | |
// fileExistsAtPathメソッドでファイルの有無確認 | |
BOOL isExist = [fileManager fileExistsAtPath:filePath]; | |
// 1が出力されたら存在する | |
NSLog(@"isExist: %d", isExist); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment