LolaRun
LolaRun

Reputation: 5666

NSFileManager creating directory error 518 NSFileWriteUnsupportedSchemeError

I was trying to create a directory

NSError*error=nil;

NSString* BIDirectory=[[NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask,YES) objectAtIndex:0] stringByAppendingPathComponent:@"BI"];
BOOL isDir,flag=YES;
    //if the directory doesn't exist create it.
if(!([[NSFileManager defaultManager] fileExistsAtPath:BIDirectory isDirectory:&isDir]&& isDir))     
    flag=[[NSFileManager defaultManager] createDirectoryAtURL:[NSURL URLWithString:BIDirectory] withIntermediateDirectories:YES attributes:nil error:&error];

i got the following error

enter code hereError Domain=NSCocoaErrorDomain Code=518 "The operation couldn’t be completed. (Cocoa error 518.)" UserInfo=0x197190 {NSURL=/var/mobile/Applications/55793654-6CDB-4B07-8FBF-553DC37D583D/Library/Caches/BI}

maybe the url is wrong?

Upvotes: 16

Views: 4520

Answers (1)

Omar Abdelhafith
Omar Abdelhafith

Reputation: 21221

Instead of

    [NSURL URLWithString:BIDirectory]

please use

    [NSURL fileURLWithPath:BIDirectory]

its wrong to use URLWithString:BIDirectory on local files

Upvotes: 40

Related Questions