Changeset 889
- Timestamp:
- 07/14/04 01:57:01 (4 years ago)
- Files:
-
- Footagehead/trunk/FHFileHandler.m (modified) (2 diffs)
- Footagehead/trunk/FHRARHandler.m (modified) (3 diffs)
- Footagehead/trunk/FHZipHandler.m (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Footagehead/trunk/FHFileHandler.m
r881 r889 1 /* $Id: FHFileHandler.m,v 1. 3 2004/07/09 02:38:44morris Exp $ */1 /* $Id: FHFileHandler.m,v 1.4 2004/07/13 23:57:01 morris Exp $ */ 2 2 3 3 /* … … 113 113 114 114 // --- get info struct 115 LSCopyItemInfoForURL((CFURLRef) url, kLSRequestBasicFlagsOnly, &itemInfoRecord);115 LSCopyItemInfoForURL((CFURLRef) url, kLSRequestBasicFlagsOnly, &itemInfoRecord); 116 116 117 117 // --- is it an OS9 invisible? Footagehead/trunk/FHRARHandler.m
r876 r889 1 /* $Id: FHRARHandler.m,v 1. 2 2004/07/04 23:37:37morris Exp $ */1 /* $Id: FHRARHandler.m,v 1.3 2004/07/13 23:57:01 morris Exp $ */ 2 2 3 3 /* … … 75 75 76 76 // --- write relative path in root destination directory 77 [[ [url absoluteString] stringByAddingURLPercentEscapes]77 [[url absoluteString] 78 78 writeToFile:[root stringByAppendingPathComponent:@".FootageheadPath"] 79 79 atomically:YES]; … … 92 92 93 93 if([NSFileManager directoryExistsAtPath:path]) { 94 [[[ [url absoluteString] stringByAppendingFormat:@"/%@", file] stringByAddingURLPercentEscapes]94 [[[url absoluteString] stringByAppendingFormat:@"/%@", file] 95 95 writeToFile:[path stringByAppendingPathComponent:@".FootageheadPath"] 96 96 atomically:YES]; Footagehead/trunk/FHZipHandler.m
r876 r889 1 /* $Id: FHZipHandler.m,v 1. 2 2004/07/04 23:37:37morris Exp $ */1 /* $Id: FHZipHandler.m,v 1.3 2004/07/13 23:57:01 morris Exp $ */ 2 2 3 3 /* … … 72 72 73 73 // --- write relative path in root destination directory 74 [[ [url absoluteString] stringByAddingURLPercentEscapes]74 [[url absoluteString] 75 75 writeToFile:[root stringByAppendingPathComponent:@".FootageheadPath"] 76 76 atomically:YES]; … … 89 89 90 90 if([NSFileManager directoryExistsAtPath:path]) { 91 [[[ [url absoluteString] stringByAppendingFormat:@"/%@", file] stringByAddingURLPercentEscapes]91 [[[url absoluteString] stringByAppendingFormat:@"/%@", file] 92 92 writeToFile:[path stringByAppendingPathComponent:@".FootageheadPath"] 93 93 atomically:YES];
