Bug fix: file URL was not created properly

This commit is contained in:
Wojciech Nagrodzki 2013-04-30 16:16:24 +02:00
parent fe2b72f4eb
commit ee8a456f01
Signed by: wnagrodzki
GPG key ID: E9D0EB0302264569

View file

@ -57,8 +57,7 @@
- (BOOL)fileConformsToMovieUTI:(NSString *)filePath - (BOOL)fileConformsToMovieUTI:(NSString *)filePath
{ {
NSString* targetFilePath_converted = [filePath stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]; CFURLRef anUrl = (__bridge CFURLRef)[NSURL fileURLWithPath:filePath isDirectory:NO];
CFURLRef anUrl = (__bridge CFURLRef)[NSURL URLWithString: targetFilePath_converted];
FSRef ref; FSRef ref;
CFURLGetFSRef(anUrl,&ref); CFURLGetFSRef(anUrl,&ref);
CFTypeRef outValue; CFTypeRef outValue;
@ -87,8 +86,10 @@
completeIPath = [[NSString stringWithString:directoryPath] stringByAppendingPathComponent:iPath]; completeIPath = [[NSString stringWithString:directoryPath] stringByAppendingPathComponent:iPath];
[self.fileManager fileExistsAtPath:completeIPath isDirectory: &isDirectory]; [self.fileManager fileExistsAtPath:completeIPath isDirectory: &isDirectory];
if (!isDirectory) if (isDirectory == YES)
if ([self fileConformsToMovieUTI:completeIPath]) continue;
if ([self fileConformsToMovieUTI:completeIPath] == YES)
[movies addObject:completeIPath]; [movies addObject:completeIPath];
} }