关于在应用程序目录中检索文件信息的问题?

时间:2010-11-29 09:46:34

标签: iphone objective-c

我有一个程序,我可以将视频文件从服务器下载到应用程序的目录,但我如何检索有关此文件的信息(mp4)。我想知道该文件的大小,有没有办法知道何时创建文件的日期或时间?提前致谢

1 个答案:

答案 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
}