gpt4 book ai didi

ios - iOS 中从 bundle 复制到缓存文件夹的文件具有编译的 CreationDate 和 ModifiedDate

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:44:16 27 4
gpt4 key购买 nike

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

我的应用基本上是一个文档阅读器。一堆 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 代码汤之前先进行检查。谢谢!

最佳答案

据我所知,没有办法让 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 会为我将该文件夹复制到包中。这是我想出的代码,用于更新每个文件的修改日期 AFTER 我从 bundle 中复制了它们。

//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只是来自 NSFileManager 的默认管理器, error是一个未初始化的 NSError , [appInfo appSupportPath]是一个静态方法,它返回我在设备上存储东西的目录(因为你不能修改包)。

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

接下来我要做的是设置 XCode 以自动运行我的脚本并包含 fileInfo.plist。后者很容易,一旦您运行了脚本,您只需将其拖放到 Xcode 中并将其作为引用,棘手的部分是让它在每次构建时运行脚本。

  1. 将上面的 bash 脚本复制/粘贴到一个文件中
  2. 在项目导航器中单击您的项目
  3. 如果尚未选择目标,请在“目标”下选择您的目标(应用程序名称)
  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/..需要,因为 Assets 目录比我的项目高一级,我可以硬编码要转到的目录,这样可能会更清楚。

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

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

关于ios - iOS 中从 bundle 复制到缓存文件夹的文件具有编译的 CreationDate 和 ModifiedDate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12847015/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com