Reputation: 545
The problem here is that I cannot appending a file name using "stringByAppendingPathComponent" fma is a NSFileManager.
Working:
[fma changeCurrentDirectoryPath: [NSHomeDirectory() stringByAppendingPathComponent: @"Music/iTunes/iTunes Media/Music/ABC/DEF"]];
NSLog(@"Current Directory Path: %@", [fma currentDirectoryPath]);
Output: Current Directory Path: /Users/plusa/Music/iTunes/iTunes Media/ABC/DEF
Not working:
[fma changeCurrentDirectoryPath: [NSHomeDirectory() stringByAppendingPathComponent: @"Music/iTunes/iTunes Media/Music/ABC/DEF/a.mp3"]];
NSLog(@"Current Directory Path: %@", [fma currentDirectoryPath]); // No change
Update
What I'm going to do is creating a simple fileManager.
main.m
#import <Foundation/Foundation.h>
#import "fileManager.h"
int main(int argc, const char * argv[])
{
@autoreleasepool {
NSLog(@"Welcome to File Manager.");
fileManager *fma = [[fileManager alloc] init];
NSLog(@"Current Directory Path: %@", [fma currentDirectoryPath]);
[fma changeCurrentDirectoryPath: [NSHomeDirectory() stringByAppendingPathComponent: @"Music/iTunes/iTunes Media/Music"]];
NSLog(@"Directory Path changed to iTunes Music source base");
[fma readCurrentItem];
}
return 0;
}
fileManager.h
#import <Foundation/Foundation.h>
@interface fileManager : NSFileManager {
NSArray *list;
}
-(int) readCurrentItem;
@end
fileManager.m
#import "fileManager.h"
@implementation fileManager
-(int) readCurrentItem
{
int i = 1;
NSLog(@"Current Directory Path: %@", [self currentDirectoryPath]);
NSLog(@"Reading Directory Path...");
if(NSFileTypeDirectory == [[self attributesOfItemAtPath: [self currentDirectoryPath] error: nil] objectForKey: @"NSFileType"]) {
list = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:[self currentDirectoryPath] error: nil];
} else {
NSLog(@"File");
return 0;
}
i = 1;
for (NSString *item in list)
NSLog(@"Item #%i: %@", i++, item);
NSLog(@"The item to read:");
scanf("%i", &i);
if (i == 0) {
NSLog(@"Shutdown.");
return 0;
}
[self changeCurrentDirectoryPath: [[self currentDirectoryPath] stringByAppendingPathComponent: [list[(i - 1)] lastPathComponent]]];
[self readCurrentItem];
}
@end
Upvotes: 0
Views: 504
Reputation: 104698
Because your second example refers to a file, not a directory.
Presumably, the path is being composed correctly, but the NSFileManager
is not changing the path to the file -- again, because it is not a directory.
Upvotes: 1