3

我猜我的问题可能是设计使然,但我希望有一个解决方法。

我的应用程序基本上是一个文档阅读器。一堆 PDF 文件在编译时被拉入并与应用程序捆绑在一起。当应用程序第一次运行时,它们被复制过来(供用户添加注释等等),我为 UITableView 生成一个字典(使用 PDF 元数据填充标题等内容)。当应用程序的新版本发布时,我希望在升级过程中更聪明地复制文件。目前我能做的最好的事情就是清除所有内容并重新复制。

问题是,当 Xcode 在编译时将文件复制到包中时, NSFileCreationDate 和 NSFileModificationDate 似乎都重置为编译应用程序时。这基本上使整个日期检查无用。

2012-10-11 15:19:29.254 handouts[5131:707] File attributes of source: {
NSFileCreationDate = "2012-10-11 19:19:10 +0000";
NSFileExtensionHidden = 0;
NSFileGroupOwnerAccountID = 501;
NSFileGroupOwnerAccountName = mobile;
NSFileModificationDate = "2012-10-11 19:19:10 +0000";
NSFileOwnerAccountID = 501;
NSFileOwnerAccountName = mobile;
NSFilePosixPermissions = 420;
NSFileProtectionKey = NSFileProtectionNone;
NSFileReferenceCount = 1;
NSFileSize = 466028;
NSFileSystemFileNumber = 2754117;
NSFileSystemNumber = 234881027;
NSFileType = NSFileTypeRegular;

}

我目前正计划同时使用文件大小和日期,但我想象它会变得非常混乱,非常快。而且我必须自己跟踪一堆元数据。难道我做错了什么?有没有办法让 Xcode 尊重它正在复制的文件的时间戳?

我想在深入if...then我可能要写的代码汤之前先检查一下。谢谢!

4

1 回答 1

0

AFAIK 没有办法让 XCode 保留日期。我遇到了类似的问题,并想出了一个 shell 脚本来制作一个 plist 文件,其中包含目录中文件的修改日期(递归)。然后我将它包含在我的包中,并在我复制文件以设置修改日期时阅读它。您可以修改它以处理创建或访问日期或与某些工作相结合。

这是 bash 脚本:(我还是 bash 的新手,所以欢迎任何关于如何使它更好的评论)

#!/bin/bash
#First parameter is the folder to recurse into, defaults to current directory
#Second parameter is the full path to a pList file without the extension, defaults to
#<CURRENT DIRECTORY>/fileInfo
#if you don't specify /'s in the parameter it will be treated as a domain instead and
#the pList will be elsewhere...

pinfoLoc=${2:-`pwd`/fileInfo}

#Useful for debugging
#echo Source: ${1:-.}
#echo Destination: $pinfoLoc

for i in ${1:-.}/*; do

  #Format: %Sa = last access, %Sm = last modified, %Sc = created
  date=`stat -f "%Sm" $i`

  #Uncomment below to see each file and date used
  #echo $i - $date

  #Write the data to the pList
  defaults write $pinfoLoc "$i" -date "$date" 

  #Recurse into directories, not sure if there's a better way to do this
  if [ -d "$i" ]; then
    bash $0 $i $pinfoLoc
  fi
done

基本上我有一个名为“assets”的文件夹,它位于项目之外并链接到它,XCode 会为我将该文件夹复制到包中。这是我从捆绑包中复制每个文件更新每个文件的修改日期的代码。

//Update file properties
NSString *file, *dstPath, *srcPath;
NSDictionary *fAttribs;
NSData *fInfoData = [fm contentsAtPath:[[NSBundle mainBundle] pathForResource:@"fileInfo" ofType:@"plist"]];
NSPropertyListFormat format;
NSDictionary *fileInfo = (NSDictionary *)[NSPropertyListSerialization
                                          propertyListWithData:fInfoData
                                          options:NSPropertyListMutableContainersAndLeaves
                                          format:&format
                                          error:&error];
NSString * resPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"assets"];
NSDirectoryEnumerator *dirEnum = [fm enumeratorAtPath:resPath];
while (file = [dirEnum nextObject])
{
    NSLog(@"Directory Enum File: %@", file);
    dstPath = [NSString pathWithComponents:@[[appInfo appSupportPath], @"res", file ]];
    srcPath = [@"assets" stringByAppendingPathComponent:file];
    fAttribs = @{ NSFileModificationDate: [fileInfo valueForKey:srcPath]};
    [fm setAttributes:fAttribs ofItemAtPath:dstPath error:&error];
    if (error)
    {
        NSLog(@"Error setting attribute to file: %@ - %@", file, error.localizedDescription);
        [error release];
        error = nil;
    }
}

这是在我的复制文件方法之后,有一些你看不到的变量。即fm只是来自的默认管理器NSFileManagererror是一个未初始化的NSError[appInfo appSupportPath]是一个静态方法,它返回我在设备上存储东西的目录(因为你不能修改捆绑包)。

此外,我已经硬编码了保存日期的 plist 的位置,以及我将文件复制到的目录,我稍后可能会在我的代码中更新它。

我做的下一件事是设置 XCode 以自动运行我的脚本并包含 fileInfo.plist。后者很容易,一旦你运行了脚本,你可以将它拖放到 Xcode 中并作为参考,棘手的部分是让它在每次构建时运行脚本。

  1. 将上面的 bash 脚本复制/粘贴到文件中
  2. 在项目导航器中单击您的项目
  3. 如果尚未选择,请在 Targets 下选择您的目标(应用程序名称)
  4. 单击构建阶段选项卡
  5. 在右下角单击 Add Build Phase -> Add Run Script
  6. 新阶段将是最后一件事,不幸的是,它将文件复制到包之后,包括我们正在生成的那个。因此,将阶段拖动到“复制捆绑资源”上方
  7. 对于我放置 /bin/bash 的 shell,/bin/sh 也可以工作......
  8. 在下面的行中,我把这个:

    pushd $PROJECT_DIR/..
    /PATH/TO/BASH/FILE/ABOVE.sh assets
    popd
    

    pushd $PROJECT_DIR/..是需要的,因为资产目录比我的项目高一级,我可以硬编码要转到的目录,并且可能会更清楚。

  9. 如果您现在尝试构建,您可能会收到权限错误,因为脚本文件没有执行权限。我不知道在 Mac 上设置这个比打开终端并运行更简单的方法chmod +x <BASH FILE NAME>是的,我意识到这允许每个人执行它,如果你担心它然后玩权限,我不确定如果 XCode 构建为不同的用户或什么。

希望至少其中一些有所帮助。我使用这个修改后的日期来查看 Web 服务器上是否有更新的文件,然后只下载我需要的文件。

于 2012-12-18T23:27:41.117 回答