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
只是来自的默认管理器NSFileManager
,error
是一个未初始化的NSError
,[appInfo appSupportPath]
是一个静态方法,它返回我在设备上存储东西的目录(因为你不能修改捆绑包)。
此外,我已经硬编码了保存日期的 plist 的位置,以及我将文件复制到的目录,我稍后可能会在我的代码中更新它。
我做的下一件事是设置 XCode 以自动运行我的脚本并包含 fileInfo.plist。后者很容易,一旦你运行了脚本,你可以将它拖放到 Xcode 中并作为参考,棘手的部分是让它在每次构建时运行脚本。
- 将上面的 bash 脚本复制/粘贴到文件中
- 在项目导航器中单击您的项目
- 如果尚未选择,请在 Targets 下选择您的目标(应用程序名称)
- 单击构建阶段选项卡
- 在右下角单击 Add Build Phase -> Add Run Script
- 新阶段将是最后一件事,不幸的是,在它将文件复制到包之后,包括我们正在生成的那个。因此,将阶段拖动到“复制捆绑资源”上方
- 对于我放置 /bin/bash 的 shell,/bin/sh 也可以工作......
在下面的行中,我把这个:
pushd $PROJECT_DIR/..
/PATH/TO/BASH/FILE/ABOVE.sh assets
popd
这pushd $PROJECT_DIR/..
是需要的,因为资产目录比我的项目高一级,我可以硬编码要转到的目录,并且可能会更清楚。
- 如果您现在尝试构建,您可能会收到权限错误,因为脚本文件没有执行权限。我不知道在 Mac 上设置这个比打开终端并运行更简单的方法
chmod +x <BASH FILE NAME>
是的,我意识到这允许每个人执行它,如果你担心它然后玩权限,我不确定如果 XCode 构建为不同的用户或什么。
希望至少其中一些有所帮助。我使用这个修改后的日期来查看 Web 服务器上是否有更新的文件,然后只下载我需要的文件。