我有一个程序,我可以将视频文件从服务器下载到应用程序的目录,但我如何检索有关此文件的信息(mp4)。我想知道该文件的大小,有没有办法知道何时创建文件的日期或时间?提前致谢
答案 0 :(得分:2)
NSError *error = nil;
NSDictionary *fileInfo = [[NSFileManager defaultManager] attributesOfItemAtPath: filePath error: &error];
if ( fileInfo ) {
// examine fileInfo, see NSDictionary (NSFileAttributes) in NSFileManager.h
} else {
// handle the error
}