Dropbox 中的唯一文件标识符
Unique file identifier in Dropbox
我想知道在Dropbox中是否有唯一的id可以用来区分文件。因为当我们 copy/move dropbox 中的一个文件时,它被 delta api 检测为新更改。如果我们能用唯一的 id 来区分 dropbox 中的文件,那就太好了。我做了一些研究,但没有找到任何东西。因此,我们将不胜感激。
是的,Dropbox API v2 现在提供在 moves/renames 中持续存在的文件 ID。您可以在 the documentation 中的 "Path formats" 下找到更多信息。
文件 ID 可作为 FileMetadata
对象上的 id
字段使用,例如,由 /files/get_metadata 返回。
我想知道在Dropbox中是否有唯一的id可以用来区分文件。因为当我们 copy/move dropbox 中的一个文件时,它被 delta api 检测为新更改。如果我们能用唯一的 id 来区分 dropbox 中的文件,那就太好了。我做了一些研究,但没有找到任何东西。因此,我们将不胜感激。
是的,Dropbox API v2 现在提供在 moves/renames 中持续存在的文件 ID。您可以在 the documentation 中的 "Path formats" 下找到更多信息。
文件 ID 可作为 FileMetadata
对象上的 id
字段使用,例如,由 /files/get_metadata 返回。