Changeset 1165 for branches/PlayerFramework/SapphireFrappliance/MetaDataImporting/SapphireNfoImporter.m
- Timestamp:
- 02/23/10 16:51:22 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/PlayerFramework/SapphireFrappliance/MetaDataImporting/SapphireNfoImporter.m
r1044 r1165 48 48 /*Check for NFO file*/ 49 49 BOOL nfoPathIsDir = NO; 50 NSString *nfoFilePath=[[path stringByDeletingPathExtension] stringByAppendingPathExtension:@"nfo"]; 50 NSString *extLessPath = path; 51 if([metaData fileContainerTypeValue] != FILE_CONTAINER_TYPE_VIDEO_TS) 52 extLessPath = [extLessPath stringByDeletingPathExtension]; 53 54 NSString *nfoFilePath=[extLessPath stringByAppendingPathExtension:@"nfo"]; 51 55 if(![fm fileExistsAtPath:nfoFilePath isDirectory:&nfoPathIsDir] || nfoPathIsDir) 52 56 return ImportStateNotUpdated;
