我将说明我的问题的一个用例。
我这里有两个文件,它们恰好是Finder 7.5.5
旧版Finder 8.1
Mac OS 版本。
如果我使用Cmd + I
我会得到以下信息:
Version:
7.5.5, © Apple Computer, Inc. 1983-96
System 7.5 Version 7.5.3
和
Version:
8.1, Copyright Apple Computer, Inc. 1983-97
Mac OS 8.1
我想以编程方式提取这些信息。但是,我什至不确定它在哪里举行。
在一个小的 Objective-C 项目(Foundation)中,我对文件做了以下7.5
操作:
NSString * finder7 = [[NSString alloc] initWithString:@"/Users/me/Desktop/Finder7"];
NSFileManager * fileManager = [NSFileManager defaultManager];
NSError * error = nil;
NSDictionary * attr = [fileManager attributesOfItemAtPath:finder7 error:&error];
NSLog(@"%@", attr);
这是输出:
2013-09-25 10:53:30.224 GetAttributes[1164:903] {
NSFileCreationDate = "1996-01-15 12:00:00 +0000";
NSFileExtensionHidden = 0;
NSFileGroupOwnerAccountID = 20;
NSFileGroupOwnerAccountName = staff;
NSFileHFSCreatorCode = 1296122707;
NSFileHFSTypeCode = 1179534418;
NSFileModificationDate = "1996-01-15 12:00:00 +0000";
NSFileOwnerAccountID = 501;
NSFileOwnerAccountName = me;
NSFilePosixPermissions = 493;
NSFileReferenceCount = 1;
NSFileSize = 0;
NSFileSystemFileNumber = 4384377;
NSFileSystemNumber = 234881026;
NSFileType = NSFileTypeRegular;
}
如您所见,没有提及版本或版权。我无法打开“应用程序的内容”,因为旧应用程序显然没有它。
所以我认为它可能是一个扩展属性,所以我得到了控制台并这样做了:
$ ls -l@
-rwxr-xr-x@ 1 me staff 0 15 Jan 1996 Finder7
com.apple.FinderInfo 32
com.apple.ResourceFork 503994
-rwxr-xr-x@ 1 me staff 3631000 16 Dec 1997 Finder8
com.apple.FinderInfo 32
com.apple.ResourceFork 502012
com.apple.metadata:kMDItemFinderComment 42
然后我在每个条目中都找到了这些条目:
$ xattr -l com.apple.FinderInfo Finder7
(...)
00077AE0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00077AF0 00 00 32 07 55 80 00 00 00 05 37 2E 35 2E 35 25 |..2.U.....7.5.5%|
00077B00 37 2E 35 2E 35 2C 20 A9 20 41 70 70 6C 65 20 43 |7.5.5, . Apple C|
00077B10 6F 6D 70 75 74 65 72 2C 20 49 6E 63 2E 20 31 39 |omputer, Inc. 19|
00077B20 38 33 2D 39 36 00 00 00 2B 00 00 00 00 00 00 00 |83-96...+.......|
(...)
$ xattr -l com.apple.FinderInfo Finder8
(...)
00077330 06 46 69 6E 64 65 72 00 00 00 00 00 00 36 08 10 |.Finder......6..|
00077340 80 00 00 00 03 38 2E 31 2B 38 2E 31 2C 20 43 6F |.....8.1+8.1, Co|
00077350 70 79 72 69 67 68 74 20 41 70 70 6C 65 20 43 6F |pyright Apple Co|
00077360 6D 70 75 74 65 72 2C 20 49 6E 63 2E 20 31 39 38 |mputer, Inc. 198|
00077370 33 2D 39 37 00 00 00 26 01 08 10 80 00 06 46 69 |3-97...&......Fi|
00077380 6E 64 65 72 00 00 00 00 00 00 00 00 00 00 00 00 |nder............|
(...)
我从来没有真正使用过扩展属性,特别是在开发中。所以在这里我需要一些光。我看到版本号在不同的位置。我怎样才能像 OSX Finder 一样直接获取这些信息?我花了几分钟手动完成,但我仍然不清楚版本是如何存储的。还有其他地方我可以找到这些信息还是我朝着正确的方向前进?
是否有 Objective-C 或 C 解决方案可以做到这一点,所以我不需要重新发明轮子?
感谢您的帮助!
我也试过检查rsrc
。在版本号之前发现了一个彩蛋。