目前我的文件路径和文件都有...
NSURL *storeUrl = [NSURL fileURLWithPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"Shared\PartyPlanner.sqlite"]];
这允许我与iTunes共享文件,而不是仅仅在'applicationDocumentsDirectory \ Shared'中使用'PartyPlanner.sqlite'
我在'applicationDocumentsDirectory'中有“SharedPartyPlanner.sqlite”
是否有更简洁的方法来访问applicationDocumentsDirectory中的共享文件夹?
答案 0 :(得分:1)
在类UNIX系统(包括iPhone OS)中,目录分隔符为/
,而不是\
。
此外,在类C语言(包括Objective-C)中,字符串中的\
用于转义字符,例如\n
→新线。如果您确实需要文件名中的反斜杠,则需要键入Shared\\PartyPlanner.sqlite
。