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