mirror of
https://github.com/wnagrodzki/iNapi.git
synced 2025-04-05 11:51:57 +02:00
Bug fix: file URL was not created properly
This commit is contained in:
parent
fe2b72f4eb
commit
ee8a456f01
1 changed files with 6 additions and 5 deletions
|
@ -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];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue