<?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: How to access a directory programatically with java android code in dropbox in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152183#M5056</link>
    <description>&lt;P&gt;Want to upload a audio file .But first trying to upload a text file. In the folder :&lt;BR /&gt; Apps/Mapplication&lt;BR /&gt;in dropbox of the user using my android application&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Nov 2015 11:31:53 GMT</pubDate>
    <dc:creator>Demo B.</dc:creator>
    <dc:date>2015-11-13T11:31:53Z</dc:date>
    <item>
      <title>How to access a directory programatically with java android code in dropbox</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152179#M5052</link>
      <description>&lt;P&gt;Not able to provide the correct path to upload a file programatically in dropbox.&lt;/P&gt;
&lt;P&gt;putfile() can be used..But the path i am not able to provide . Searching for last 4 hours.Not able to find a solution.Please help if anyone can.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:38:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152179#M5052</guid>
      <dc:creator>Demo B.</dc:creator>
      <dc:date>2019-05-29T09:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a directory programatically with java android code in dropbox</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152180#M5053</link>
      <description>&lt;P&gt;Can you clarify what you mean when you say you can't provide the path?&amp;nbsp;The path should be the path in the&amp;nbsp;Dropbox account where you want to upload the file. For example, to upload a file "test.txt" into a folder named "Documents", you would use the path "/Documents/test.txt"&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 02:25:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152180#M5053</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-11-13T02:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a directory programatically with java android code in dropbox</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152181#M5054</link>
      <description>&lt;P&gt;When using the way u r saying then I got an exception. DropboxException:null.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;try&lt;BR /&gt;{&lt;BR /&gt;    DropboxAPI.Entry response = new DropboxAPI.Entry();&lt;BR /&gt;    Log.d("mhk","Uploading file..."+response.root);&lt;BR /&gt;    response = mDBApi.putFile(response.root+"/hello.txt", inputStream,file.length(), null, null);&lt;BR /&gt;    Log.d("mhk","File Uploaded..."+response);&lt;BR /&gt; }&lt;BR /&gt;catch (DropboxException e)&lt;BR /&gt;{&lt;BR /&gt;    Log.e("mhk", "dropboxException is :" + e.getMessage());&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;causes exception:&lt;/PRE&gt;
&lt;PRE&gt;11-13 08:27:49.555 18716-18736/? D/mhk﹕ Uploading file...null&lt;BR /&gt;11-13 08:27:49.555 18716-18736/? E/mhk﹕ dropboxException is :null&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 10:58:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152181#M5054</guid>
      <dc:creator>Demo B.</dc:creator>
      <dc:date>2015-11-13T10:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a directory programatically with java android code in dropbox</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152182#M5055</link>
      <description>&lt;P&gt;From the log output, it looks like response.root is null, which makes sense, since you're getting it from an empty DropboxAPI.Entry. What are you actually trying to do here? (Where do you want the file to go?)&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 11:04:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152182#M5055</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-11-13T11:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a directory programatically with java android code in dropbox</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152183#M5056</link>
      <description>&lt;P&gt;Want to upload a audio file .But first trying to upload a text file. In the folder :&lt;BR /&gt; Apps/Mapplication&lt;BR /&gt;in dropbox of the user using my android application&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 11:31:53 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152183#M5056</guid>
      <dc:creator>Demo B.</dc:creator>
      <dc:date>2015-11-13T11:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a directory programatically with java android code in dropbox</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152184#M5057</link>
      <description>&lt;PRE&gt;private DropboxAPI&amp;lt;AndroidAuthSession&amp;gt; mDBApi;//global variable&lt;BR /&gt;final static private String APP_KEY = "abc";&lt;BR /&gt;final static private String APP_SECRET = "xyz";&lt;BR /&gt;&lt;BR /&gt;class forPutFile extends AsyncTask&amp;lt;String,String,Boolean&amp;gt;&lt;BR /&gt;{&lt;BR /&gt;    @Override&lt;BR /&gt;    protected Boolean doInBackground(String... params)&lt;BR /&gt;    {&lt;BR /&gt;        Log.d("mhk","indoInBackground");&lt;BR /&gt;        File file = new File(Environment.getExternalStorageDirectory()+"/hello.txt");&lt;BR /&gt;        FileInputStream inputStream = null;&lt;BR /&gt;        Log.d("mhk","file created..");&lt;BR /&gt;        try&lt;BR /&gt;        {&lt;BR /&gt;            Log.d("mhk","updating inputstream.");&lt;BR /&gt;            inputStream = new FileInputStream(file);&lt;BR /&gt;            Log.d("mhk","inputstream is :"+inputStream);&lt;BR /&gt;        }&lt;BR /&gt;        catch (FileNotFoundException e)&lt;BR /&gt;        {&lt;BR /&gt;            Log.e("mhk", "inputstreamException is : " + e.getMessage());&lt;BR /&gt;        }&lt;BR /&gt;&lt;BR /&gt;        try&lt;BR /&gt;        {&lt;BR /&gt;            DropboxAPI.Entry response = new DropboxAPI.Entry();&lt;BR /&gt;            Log.d("mhk","Uploading file..."+response.root);&lt;BR /&gt;            response = mDBApi.putFile(response.root+"/hello.txt", inputStream,file.length(), null, null);&lt;BR /&gt;            Log.d("mhk","File Uploaded..."+response);&lt;BR /&gt;         }&lt;BR /&gt;        catch (DropboxException e)&lt;BR /&gt;        {&lt;BR /&gt;            Log.e("mhk", "dropboxException is :" + e.getMessage());&lt;BR /&gt;        }&lt;BR /&gt;        Log.d("mhk", "The uploaded file's rev is: ");//+ response.rev);&lt;BR /&gt;        return false; }}&lt;BR /&gt;void savingToDropbox(){   try   {&lt;/PRE&gt;
&lt;PRE&gt;try&lt;BR /&gt;{&lt;BR /&gt;    AppKeyPair appKeys = new AppKeyPair(APP_KEY, APP_SECRET);&lt;BR /&gt;    AndroidAuthSession session = new AndroidAuthSession(appKeys);&lt;BR /&gt;    mDBApi = new DropboxAPI&amp;lt;AndroidAuthSession&amp;gt;(session);&lt;BR /&gt;    mDBApi.getSession().startOAuth2Authentication(MainActivity.this);&lt;/PRE&gt;
&lt;PRE&gt;new forPutFile().execute("Hii");&lt;BR /&gt;            }&lt;BR /&gt;            catch (Exception e1)&lt;BR /&gt;            {&lt;BR /&gt;                Log.e("mhk", "DropboxException" + e1.getMessage());&lt;BR /&gt;            }&lt;BR /&gt;        }&lt;BR /&gt;        catch (Exception e)&lt;BR /&gt;        {&lt;BR /&gt;            Log.e("mhk", "FileNotFoundException" + e.getMessage());&lt;BR /&gt;        }&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    protected void onResume()&lt;BR /&gt;    {&lt;BR /&gt;        super.onResume();&lt;BR /&gt;        if (mDBApi.getSession().authenticationSuccessful())&lt;BR /&gt;        {&lt;BR /&gt;            try&lt;BR /&gt;            {&lt;BR /&gt;                // Required to complete auth, sets the access token on the session&lt;BR /&gt;                mDBApi.getSession().finishAuthentication();&lt;BR /&gt;                String accessToken = mDBApi.getSession().getOAuth2AccessToken();&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;            }&lt;BR /&gt;            catch (IllegalStateException e)&lt;BR /&gt;            {&lt;BR /&gt;                Log.e("mhk", "Error authenticating", e);&lt;BR /&gt;            }&lt;BR /&gt;        }&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    @Override&lt;BR /&gt;    protected void onCreate(Bundle savedInstanceState) {&lt;BR /&gt;        super.onCreate(savedInstanceState);&lt;BR /&gt;        setContentView(R.layout.activity_main);&lt;BR /&gt;        savingToDropbox();&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    @Override&lt;BR /&gt;    public boolean onCreateOptionsMenu(Menu menu) {&lt;BR /&gt;        // Inflate the menu; this adds items to the action bar if it is present.&lt;BR /&gt;        getMenuInflater().inflate(R.menu.menu_main, menu);&lt;BR /&gt;        return true;&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    @Override&lt;BR /&gt;    public boolean onOptionsItemSelected(MenuItem item) {&lt;BR /&gt;        // Handle action bar item clicks here. The action bar will&lt;BR /&gt;        // automatically handle clicks on the Home/Up button, so long&lt;BR /&gt;        // as you specify a parent activity in AndroidManifest.xml.&lt;BR /&gt;        int id = item.getItemId();&lt;BR /&gt;&lt;BR /&gt;        //noinspection SimplifiableIfStatement&lt;BR /&gt;        if (id == R.id.action_settings) {&lt;BR /&gt;            return true;&lt;BR /&gt;        }&lt;BR /&gt;&lt;BR /&gt;        return super.onOptionsItemSelected(item);&lt;BR /&gt;    }&lt;BR /&gt;}&lt;/PRE&gt;
&lt;PRE&gt;11-13 08:27:49.385 18716-18736/? D/mhk﹕ indoInBackground&lt;/PRE&gt;
&lt;PRE&gt;11-13 08:27:49.385 18716-18736/? D/mhk﹕ file created..&lt;/PRE&gt;
&lt;PRE&gt;11-13 08:27:49.385 18716-18736/? D/mhk﹕ updating inputstream.&lt;BR /&gt;11-13 08:27:49.505 18716-18736/? D/mhk﹕ inputstream is :java.io.FileInputStream@419d4e98&lt;BR /&gt;11-13 08:27:49.555 18716-18736/? D/mhk﹕ Uploading file...null&lt;BR /&gt;11-13 08:27:49.555 18716-18736/? E/mhk﹕ dropboxException is :null&lt;BR /&gt;11-13 08:27:49.555 18716-18736/? D/mhk﹕ The uploaded file's rev is:&lt;/PRE&gt;
&lt;P&gt;This is the full snippet. But it is giving exception ... Having all those permissions and everything in manifest file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 11:36:48 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152184#M5057</guid>
      <dc:creator>Demo B.</dc:creator>
      <dc:date>2015-11-13T11:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a directory programatically with java android code in dropbox</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152185#M5058</link>
      <description>&lt;P&gt;You're still using&amp;nbsp;an empty DropboxAPI.Entry, like Steve mentioned before. To see how this works, I recommend just starting with a simple path. For example, try this to get started:&lt;/P&gt;
&lt;PRE&gt;            response = mDBApi.putFile("/hello.txt", inputStream, file.length(), null, null);&lt;/PRE&gt;</description>
      <pubDate>Sat, 14 Nov 2015 02:40:48 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152185#M5058</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-11-14T02:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a directory programatically with java android code in dropbox</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152186#M5059</link>
      <description>&lt;PRE&gt;package com.example.mhk.dropbox;&lt;BR /&gt;&lt;BR /&gt;import android.content.Context;&lt;BR /&gt;import android.content.SharedPreferences;&lt;BR /&gt;import android.os.AsyncTask;&lt;BR /&gt;import android.os.Environment;&lt;BR /&gt;import android.support.v7.app.AppCompatActivity;&lt;BR /&gt;import android.os.Bundle;&lt;BR /&gt;import android.util.Log;&lt;BR /&gt;import android.view.Menu;&lt;BR /&gt;import android.view.MenuItem;&lt;BR /&gt;import android.widget.EditText;&lt;BR /&gt;&lt;BR /&gt;import com.dropbox.client2.DropboxAPI;&lt;BR /&gt;import com.dropbox.client2.android.AndroidAuthSession;&lt;BR /&gt;import com.dropbox.client2.exception.DropboxException;&lt;BR /&gt;import com.dropbox.client2.session.AppKeyPair;&lt;BR /&gt;import java.io.File;&lt;BR /&gt;import java.io.FileInputStream;&lt;BR /&gt;import java.io.FileNotFoundException;&lt;BR /&gt;import java.io.FileWriter;&lt;BR /&gt;import java.io.IOException;&lt;BR /&gt;&lt;BR /&gt;public class MainActivity extends AppCompatActivity&lt;BR /&gt;{&lt;BR /&gt;    private DropboxAPI&amp;lt;AndroidAuthSession&amp;gt; mDBApi;//global variable&lt;BR /&gt;    final static private String APP_KEY = "jkj";&lt;BR /&gt;    final static private String APP_SECRET = "xyx";&lt;BR /&gt;&lt;BR /&gt;    class forPutFile extends AsyncTask&amp;lt;String,String,Boolean&amp;gt;&lt;BR /&gt;    {&lt;BR /&gt;        @Override&lt;BR /&gt;        protected Boolean doInBackground(String... params)&lt;BR /&gt;        {&lt;BR /&gt;            Log.d("mhk","indoInBackground");&lt;BR /&gt;            File file = new File(Environment.getExternalStorageDirectory()+"/hello.txt");&lt;BR /&gt;            FileInputStream inputStream=null;&lt;BR /&gt;            try&lt;BR /&gt;            {&lt;BR /&gt;                inputStream = new FileInputStream(file);&lt;BR /&gt;                Log.d("mhk","file created..");&lt;BR /&gt;                Log.d("mhk","inputstream is :"+inputStream);&lt;BR /&gt;            }&lt;BR /&gt;            catch (FileNotFoundException e)&lt;BR /&gt;            {&lt;BR /&gt;                Log.e("mhk", "inputstreamException is : " + e.getMessage());&lt;BR /&gt;            }&lt;BR /&gt;            try&lt;BR /&gt;            {&lt;BR /&gt;                DropboxAPI.Entry response = mDBApi.putFile("/hello.txt", inputStream,file.length(), null, null);&lt;BR /&gt;                Log.d("mhk","The uploaded file's rev is: " + response.rev);&lt;BR /&gt;             }&lt;BR /&gt;            catch (DropboxException e)&lt;BR /&gt;            {&lt;BR /&gt;                e.printStackTrace();&lt;BR /&gt;                Log.e("mhk", "dropboxException is :" + e.getMessage());&lt;BR /&gt;            }&lt;BR /&gt;            return false;&lt;BR /&gt;        }&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    void savingToDropbox()&lt;BR /&gt;    {&lt;/PRE&gt;
&lt;PRE&gt;       try&lt;BR /&gt;            {&lt;BR /&gt;                AppKeyPair appKeys = new AppKeyPair(APP_KEY, APP_SECRET);&lt;BR /&gt;                AndroidAuthSession session = new AndroidAuthSession(appKeys);&lt;BR /&gt;                mDBApi = new DropboxAPI&amp;lt;AndroidAuthSession&amp;gt;(session);&lt;BR /&gt;                mDBApi.getSession().startOAuth2Authentication(MainActivity.this);&lt;BR /&gt;            }&lt;BR /&gt;            catch (Exception e1)&lt;BR /&gt;            {&lt;BR /&gt;                Log.e("mhk", "Exception" + e1.getMessage());&lt;BR /&gt;            }&lt;BR /&gt;        &lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    protected void onResume()&lt;BR /&gt;    {&lt;BR /&gt;        super.onResume();&lt;BR /&gt;        if (mDBApi.getSession().authenticationSuccessful())&lt;BR /&gt;        {&lt;BR /&gt;            try&lt;BR /&gt;            {&lt;BR /&gt;                // Required to complete auth, sets the access token on the session&lt;BR /&gt;                mDBApi.getSession().finishAuthentication();&lt;BR /&gt;                String accessToken = mDBApi.getSession().getOAuth2AccessToken();&lt;BR /&gt;                SharedPreferences sp=getSharedPreferences("DropBox App", MODE_PRIVATE);&lt;BR /&gt;                SharedPreferences.Editor ed=sp.edit();&lt;BR /&gt;                ed.putString("accessToken",accessToken);&lt;BR /&gt;            }&lt;BR /&gt;            catch (IllegalStateException e)&lt;BR /&gt;            {&lt;BR /&gt;                Log.e("mhk", "Error authenticating", e);&lt;BR /&gt;            }&lt;BR /&gt;        }&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    @Override&lt;BR /&gt;    protected void onCreate(Bundle savedInstanceState) {&lt;BR /&gt;        super.onCreate(savedInstanceState);&lt;BR /&gt;        setContentView(R.layout.activity_main);&lt;BR /&gt;        savingToDropbox();&lt;BR /&gt;        new forPutFile().execute("Hii");&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    @Override&lt;BR /&gt;    public boolean onCreateOptionsMenu(Menu menu) {&lt;BR /&gt;        // Inflate the menu; this adds items to the action bar if it is present.&lt;BR /&gt;        getMenuInflater().inflate(R.menu.menu_main, menu);&lt;BR /&gt;        return true;&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    @Override&lt;BR /&gt;    public boolean onOptionsItemSelected(MenuItem item) {&lt;BR /&gt;        // Handle action bar item clicks here. The action bar will&lt;BR /&gt;        // automatically handle clicks on the Home/Up button, so long&lt;BR /&gt;        // as you specify a parent activity in AndroidManifest.xml.&lt;BR /&gt;        int id = item.getItemId();&lt;BR /&gt;&lt;BR /&gt;        //noinspection SimplifiableIfStatement&lt;BR /&gt;        if (id == R.id.action_settings) {&lt;BR /&gt;            return true;&lt;BR /&gt;        }&lt;BR /&gt;&lt;BR /&gt;        return super.onOptionsItemSelected(item);&lt;BR /&gt;    }&lt;/PRE&gt;
&lt;PRE&gt;This is the full code snippet i am using. Gregory had done by giving simple path also.Getting the same error giving under:&lt;/PRE&gt;
&lt;PRE&gt;11-16 14:49:57.977 22637-22675/? D/mhk﹕ indoInBackground&lt;BR /&gt;11-16 14:49:57.987 22637-22675/? D/mhk﹕ file created..&lt;BR /&gt;11-16 14:49:57.987 22637-22675/? D/mhk﹕ inputstream is :java.io.FileInputStream@41aba9f0&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;11-16 14:49:57.997 22637-22675/? E/mhk﹕ dropboxException is :null (This is the exception...)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/PRE&gt;
&lt;PRE&gt;Please provide a solution .I am studying Core API for the first time.And it had really irritated me.&lt;BR /&gt;&lt;BR /&gt;}&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Nov 2015 17:21:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152186#M5059</guid>
      <dc:creator>Demo B.</dc:creator>
      <dc:date>2015-11-16T17:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a directory programatically with java android code in dropbox</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152187#M5060</link>
      <description>&lt;P&gt;I have found my bug.Thanks everyone for your support. I was calling putFile() at initialization. But it must be called after authentication and in onResume()&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2015 18:52:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-access-a-directory-programatically-with-java-android-code/m-p/152187#M5060</guid>
      <dc:creator>Demo B.</dc:creator>
      <dc:date>2015-11-16T18:52:14Z</dc:date>
    </item>
  </channel>
</rss>

