1

次のようなディレクトリの作成方法を知っています。

[[self restClient] createFolder: folderName];

しかし、フォルダ「A」内にフォルダ「B」を作成したい場合、どうすればよいでしょうか?

ディレクトリ階層は次のとおりです: A > B > c.txt

「A」を作成できますが、A の中に B を作成できません。

どんな助けでも大歓迎です。

4

1 に答える 1

2

あなたは半分終わった、ただこれを試してみてください

[[self restClient] createFolder:@"A"];

それから

[[self restClient] createFolder:@"A/B"];


- (void)restClient:(DBRestClient*)client createdFolder:(DBMetadata*)folder{
    NSLog(@"Meta Data Path %@",[folder path]);
    NSLog(@"Meta Data Filename %@",[folder filename]);
    NSLog(@"Meta has directory %d",[folder isDirectory]);

}
// Folder is the metadata for the newly created folder
- (void)restClient:(DBRestClient*)client createFolderFailedWithError:(NSError*)error{
    NSLog(@"Fail Error %@",error);
}
// [error userInfo] contains the root and path

メタデータとフォルダの作成について

于 2012-07-17T15:03:36.890 に答える