Can I search/get file by using File ID in Dropbox V2 API? -
i'm using dropbox v2 apis (c#) files/folders dropbox account. able fetch particular file/folder using specific path. wanted know whether there way can fetch file/folder using id?
this depends on operation(s) you're referring to. example, downloading files , getting metadata files or folders support specifying file ids:
https://www.dropbox.com/developers/documentation/http/documentation#files-download https://www.dropbox.com/developers/documentation/http/documentation#files-get_metadata
you specify path
string "id:a4ayc_80_oeaaaaaaaaaya".
searching , listing folders not support though:
https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder https://www.dropbox.com/developers/documentation/http/documentation#files-search
the same applies corresponding methods in sdks.
Comments
Post a Comment