Dropboxにいくつかのサブディレクトリとファイルを含むリモートディレクトリがあります。
リモート側:
-Mobile Profiles *(root)*
-- Custom Profiles
--- Profile1
--- Profile2
--- Profile3
ファイルとディレクトリ/およびファイルを含むサブディレクトリをアップロードすることは問題ではありません。ドロップボックスからデバイスにサブディレクトリとそのコンテンツを取得することになると、私は頭がおならをしています。
置く
-(void)backupCustomProfiles {
for ( NSString *file in [[NSFileManager defaultManager] contentsOfDirectoryAtPath:MP_CUSTOM error:&error] ) {
[self.restClient uploadFile:file toPath:@"/Mobile Profiles/Custom Profiles/" fromPath:EasyStrings(MP_CUSTOM,file)];
}
}
得る
-(void)restoreCustomProfiles {
for ( ) {
/* ? */
}
}
リモート側のサブディレクトリを反復処理する方法がわかりません。