0

我正在尝试使用 Dropbox 的核心 Java API 中的 createFolder() 函数调用来创建嵌入式文件夹。(http://dropbox.github.io/dropbox-sdk-java/api-docs/v1.7.x/com/dropbox/core/DbxClient.html#createFolder(java.lang.String)

例如,

createFolder("/a") 创建一个名为 a 的文件夹。

如果我想在文件夹“a”中创建一个文件夹“b”,我该怎么做?当我调用 createFolder("/a/b") 时,它会在根目录中创建一个文件夹 b,与文件夹 a 处于同一级别,这不是我想要的。

4

1 回答 1

2

Combine the createFolder with move to do what you intend.

public DbxEntry move(String fromPath, String toPath) throws DbxException

Move a file or folder from one path in Dropbox to another path in Dropbox.

So you create folders a and b on the same level. The you move b into a using the move() method.

于 2013-10-31T02:12:30.723 回答