size of NSCachesDirectory in iphone

后端 未结 2 737
梦谈多话
梦谈多话 2021-01-30 19:12

how do i get size of folder NSCachesDirectory i.e /Library/Cache. i want to know size of this folder so that i can eventually clear this.

thanks.

Edit: h

2条回答
  •  佛祖请我去吃肉
    2021-01-30 19:42

    Do you really mean /Library/Cache, or do you mean ~/Library/Cache (the application's cache directory). You generally have no control over the former, so I'll assume you mean the latter.

    Use NSFileManager's -enumeratorAtPath: to walk the directory and use -attributesOfItemAtPath:error: to fetch the fileSize. I recommend doing this slowly on a background thread to avoid blocking your app.

提交回复
热议问题