<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Recently modified Direcories or files in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265336#M15568</link>
    <description>You will get a different cursor each time, but the cursor itself doesn't tell you about the contents anyway. You should refer to the 'entries' list in the response to see what, if anything, changed under that folder.</description>
    <pubDate>Fri, 16 Feb 2018 17:23:44 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2018-02-16T17:23:44Z</dc:date>
    <item>
      <title>Recently modified Direcories or files</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/264994#M15527</link>
      <description>&lt;P&gt;How can I know if a directory or files has been modify before download it.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:15:23 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/264994#M15527</guid>
      <dc:creator>rhernandez8305</dc:creator>
      <dc:date>2019-05-29T09:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: Recently modified Direcories or files</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265014#M15529</link>
      <description>&lt;P&gt;The best way to keep track of changes in folders via the API is to use the &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_self"&gt;/2/files/list_folder[&lt;/A&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_self"&gt;/continue&lt;/A&gt;] endpoints. By storing and re-using the latest cursor you&amp;nbsp;received and calling back to &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_self"&gt;/2/files/list_folder/continue&lt;/A&gt;&amp;nbsp;when desired, you can see just what changed, if anything. The documentation for those endpoints contains more information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For reference, there are corresponding native methods for those endpoints in the official SDKs, such as &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderAsync_1.htm" target="_self"&gt;ListFolder&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderContinueAsync_1.htm" target="_blank"&gt;ListFolderContinue&lt;/A&gt;&amp;nbsp;in the .NET SDK, for example.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2018 20:36:07 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265014#M15529</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-02-14T20:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Recently modified Direcories or files</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265046#M15539</link>
      <description>&lt;P&gt;Thanks for reply! I had test the functions but the cursor value change in each request, just the files' hash value is the same. With the files' hash value I know if the file changed but the dictories I don't know how do it, the directories doesn´t have hash value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2018 23:37:53 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265046#M15539</guid>
      <dc:creator>rhernandez8305</dc:creator>
      <dc:date>2018-02-14T23:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Recently modified Direcories or files</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265135#M15550</link>
      <description>What kind of "change" for the folder are you looking for exactly? By storing and re-using the latest cursor you received, you can get any/all changes in the folder. If you want to receive changes in subfolders too, set recursive=true.</description>
      <pubDate>Thu, 15 Feb 2018 14:11:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265135#M15550</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-02-15T14:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Recently modified Direcories or files</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265256#M15564</link>
      <description>&lt;P&gt;Did you have an example, I got a diferent cursor value in each request although the folder don´t have changes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;var list3 = await dbx.Files.ListFolderAsync(string.Empty);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;first request&lt;/P&gt;
&lt;P&gt;list3.Cursor =&amp;nbsp; AAG88yckZh...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;second request&lt;/P&gt;
&lt;P&gt;list3.Curso=AAHI9m7iCl...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;never is the same cursor value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 00:29:34 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265256#M15564</guid>
      <dc:creator>rhernandez8305</dc:creator>
      <dc:date>2018-02-16T00:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Recently modified Direcories or files</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265336#M15568</link>
      <description>You will get a different cursor each time, but the cursor itself doesn't tell you about the contents anyway. You should refer to the 'entries' list in the response to see what, if anything, changed under that folder.</description>
      <pubDate>Fri, 16 Feb 2018 17:23:44 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Recently-modified-Direcories-or-files/m-p/265336#M15568</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-02-16T17:23:44Z</dc:date>
    </item>
  </channel>
</rss>

