获取录音文件创建时间及时长

一、获取文件创建时间等信息

    NSFileManager *fileManager = [NSFileManager defaultManager];

    NSDictionary *fileAttributes = [fileManager attributesOfItemAtPath:filePath error:nil];
    if (fileAttributes != nil) {
        //文件创建日期
        NSDate *creationDate = [fileAttributes objectForKey:NSFileCreationDate];
    }

  


二、获取文件时长

    注意:导入#import

    AVURLAsset* audioAsset = [AVURLAsset URLAssetWithURL:[NSURL fileURLWithPath:filePath] options:nil];
    CMTime audioDuration = audioAsset.duration;

    float audioDurationSeconds = CMTimeGetSeconds(audioDuration);



番外:醉啦醉啦!被自己蠢哭的经历,获取录音时长 百分百没问题。可是忘记了自己取的是本地文件!要用fileURLWithPath ~~~~~~~

           因为这个,我决定要记录下。写太多代码,细节竟不注意!

 
    

你可能感兴趣的:(IOS)