iOS:如何找到文件的创建日期?

问题描述 投票:30回答:8

我正在尝试查找文件的创建日期(不是修改日期)。

虽然修改日期是,但创建日期似乎不在文件的属性中。

我正在使用此代码..

NSFileManager* fm = [NSFileManager defaultManager];

NSString* path = [PathHelpers pathInDocumentsFolderWithFilename:FILE_NAME];
NSDictionary* attrs = [fm attributesOfItemAtPath:path error:nil];

if (attrs != nil) {
    return (NSDate*)[attrs objectForKey: NSFileCreationDate];
} else {
    return nil;
}

这总是返回零。在调试器中键入“po attrs”以获取NSDictionary中的键/值对列表将返回以下内容。

NSFileGroupOwnerAccountID = 20; NSFileGroupOwnerAccountName = staff; NSFileModificationDate = 2010-01-21 11:47:55 +0000; NSFileOwnerAccountID = 501; NSFileOwnerAccountName = ben; NSFilePosixPermissions = 420; NSFileReferenceCount = 1; NSFileSize = 338; NSFileSystemFileNumber = 2234; NSFileSystemNumber = 42553324; NSFileType = NSFileTypeRegular;

没有创作日期..呸..

任何人都知道另一种获取创建日期的方式,还是只是在iOS中不存在?

ios file date nsfilemanager
8个回答
66
投票

这段代码实际上给我留下了良好的创建日期:

NSFileManager* fm = [NSFileManager defaultManager];
NSDictionary* attrs = [fm attributesOfItemAtPath:path error:nil];

if (attrs != nil) {
    NSDate *date = (NSDate*)[attrs objectForKey: NSFileCreationDate];
    NSLog(@"Date Created: %@", [date description]);
} 
else {
    NSLog(@"Not found");
}

您是否在App中创建文件?也许这就是问题所在。


16
投票

fileCreationDate有一个特殊的消息NSDictionary。以下适用于我:

Objective-C的:

NSDate *date = [attrs fileCreationDate];

迅速:

let attrs = try NSFileManager.defaultManager().attributesOfItemAtPath(path) as NSDictionary
attrs.fileCreationDate()

7
投票

Swift 2.0版本:

do {
    let fileAttributes = try NSFileManager.defaultManager().attributesOfItemAtPath(YOURPATH)
    let creationDate = fileAttributes[NSFileCreationDate] as? NSDate
    let modificationDate = fileAttributes[NSFileModificationDate] as? NSDate
    print("creation date of file is", creationDate)
    print("modification date of file is", modificationDate)
}catch let error as NSError {
    print("file not found:", error)
}

4
投票

在Swift 4中,如果您想知道DocumentsDirectory中特定文件的文件创建日期,则可以使用此方法

func getfileCreatedDate(theFile: String) -> Date {

        var theCreationDate = Date()
        do{
            let aFileAttributes = try FileManager.default.attributesOfItem(atPath: theFile) as [FileAttributeKey:Any]
            theCreationDate = aFileAttributes[FileAttributeKey.creationDate] as! Date

        } catch let theError as Error{
            print("file not found \(theError)")
        }
        return theCreationDate
    }

3
投票
  NSDate *creationDate = nil;
  if ([fileManager fileExistsAtPath:filePath]) {
       NSDictionary *attributes = [fileManager attributesOfItemAtPath:filePath error:nil];
       creationDate = attributes[NSFileCreationDate];
  }

它的here


2
投票

Swift 3版本代码:

do {
        let fileAttributes = try FileManager.default.attributesOfItem(atPath: yourPathString)
        let modificationDate = fileAttributes[FileAttributeKey.modificationDate] as! Date
        print("Modification date: ", modificationDate)
    } catch let error {
        print("Error getting file modification attribute date: \(error.localizedDescription)")
    }

1
投票

你能用fstat64来获取返回结构的st_birthtimespec成员吗?你需要为文件创建一个C文件句柄,并将timespec值转换为NSDate,但这比没有好。


1
投票

更新了Swift 4的答案,以取出修改后的(.modifiedDate)或创建(.creationDate)日期:

let file: URL = ...
if let attributes = try? FileManager.default.attributesOfItem(atPath: file.path) as [FileAttributeKey: Any],
    let creationDate = attributes[FileAttributeKey.creationDate] as? Date {
    print(creationDate)
    }
  1. 使用您通过URL提前提供的文件,它将请求其属性。如果成功,则返回[FileAttributeKey:Any]的字典
  2. 使用步骤1中的字典,然后拉出创建日期(或者如果您愿意,可以修改)并使用条件展开,如果成功则将其指定为日期
  3. 假设前两个步骤成功,您现在可以使用日期
© www.soinside.com 2019 - 2024. All rights reserved.