コード例 #1
0
 @Override
 protected final void call(final DbxClient client, final ProgressMonitor pm) throws DbxException {
   pm.begin(1);
   if (client.createFolder(path) == null) {
     getLog().error("already a folder at the given destination");
   }
 }
コード例 #2
0
 public void createFolder(String folderName) throws DbxException {
   dbxClient.createFolder("/" + folderName);
 }