<?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: Rename folder and file in iOs Using APIV2 in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Rename-folder-and-file-in-iOs-Using-APIV2/m-p/220177#M11640</link>
    <description>&lt;PRE&gt;&amp;nbsp;&amp;nbsp;- (DBRpcTask&amp;lt;DBFILESMetadata *, DBFILESRelocationError *&amp;gt; *_Nonnull)&amp;nbsp; move:(NSString *_Nonnull)fromPath toPath:(NSString *_Nonnull)toPath
{
&amp;nbsp; &amp;nbsp;
}
&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;can you pelase suggest how to use this method. I tried a lot.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 09 May 2017 18:38:01 GMT</pubDate>
    <dc:creator>bliss</dc:creator>
    <dc:date>2017-05-09T18:38:01Z</dc:date>
    <item>
      <title>Rename folder and file in iOs Using APIV2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Rename-folder-and-file-in-iOs-Using-APIV2/m-p/218132#M11422</link>
      <description>&lt;P&gt;How we can rename a folder or file in the IOS using objective c. I am using apiv2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.!!1&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:23:19 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Rename-folder-and-file-in-iOs-Using-APIV2/m-p/218132#M11422</guid>
      <dc:creator>bliss</dc:creator>
      <dc:date>2019-05-29T09:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Rename folder and file in iOs Using APIV2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Rename-folder-and-file-in-iOs-Using-APIV2/m-p/218252#M11438</link>
      <description>To rename any file or folder using the API v2 Objective-C SDK, you should use the move method:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-obj-c/api-docs/latest/Classes/DBFILESUserAuthRoutes.html#/c:objc(cs)DBFILESUserAuthRoutes(im)move:toPath" target="_blank"&gt;https://dropbox.github.io/dropbox-sdk-obj-c/api-docs/latest/Classes/DBFILESUserAuthRoutes.html#/c:objc(cs)DBFILESUserAuthRoutes(im)move:toPath&lt;/A&gt;:</description>
      <pubDate>Thu, 27 Apr 2017 18:14:49 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Rename-folder-and-file-in-iOs-Using-APIV2/m-p/218252#M11438</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-04-27T18:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Rename folder and file in iOs Using APIV2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Rename-folder-and-file-in-iOs-Using-APIV2/m-p/220177#M11640</link>
      <description>&lt;PRE&gt;&amp;nbsp;&amp;nbsp;- (DBRpcTask&amp;lt;DBFILESMetadata *, DBFILESRelocationError *&amp;gt; *_Nonnull)&amp;nbsp; move:(NSString *_Nonnull)fromPath toPath:(NSString *_Nonnull)toPath
{
&amp;nbsp; &amp;nbsp;
}
&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;can you pelase suggest how to use this method. I tried a lot.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2017 18:38:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Rename-folder-and-file-in-iOs-Using-APIV2/m-p/220177#M11640</guid>
      <dc:creator>bliss</dc:creator>
      <dc:date>2017-05-09T18:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Rename folder and file in iOs Using APIV2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Rename-folder-and-file-in-iOs-Using-APIV2/m-p/220285#M11652</link>
      <description>&lt;P&gt;The move method is an "RPC-style request", so you would use it like&lt;A href="https://github.com/dropbox/dropbox-sdk-obj-c#rpc-style-request" target="_self"&gt; the samples in the documentation under "RPC-style request"&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Specifically, it would look like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;[[client.filesRoutes move:@"/original_path" toPath:@"/new_path"] setResponseBlock:^(DBFILESMetadata *result, DBFILESRelocationError *routeError, DBRequestError *requestError) {
        if (result) {
            NSLog(@"%@\n", result);
        } else {
            NSLog(@"%@\n", routeError);
            NSLog(@"%@\n", requestError);
        }
}];&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2017 18:44:15 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Rename-folder-and-file-in-iOs-Using-APIV2/m-p/220285#M11652</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-05-09T18:44:15Z</dc:date>
    </item>
  </channel>
</rss>

