<?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: search dropbox folder in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201810#M9544</link>
    <description>thanks again greg. however I'm not really understanding how i would be able to search for all the filenames within a specific dropbox folder, and add those filenames to an array of strings, to then use as a base for my user to search for a specific string in that array. sorry if I'm not making to much sense. this is all very new to me. FYI - I'm using swift 3</description>
    <pubDate>Thu, 12 Jan 2017 19:12:36 GMT</pubDate>
    <dc:creator>bbongrip</dc:creator>
    <dc:date>2017-01-12T19:12:36Z</dc:date>
    <item>
      <title>search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201708#M9531</link>
      <description>&lt;P&gt;can anybody tell me a way to search a specific folder in dropbox to populate an array of&amp;nbsp;strings with&amp;nbsp;the filenames in that folder? Im trying to implement a way for users&amp;nbsp;to search for a file in a dropbox folder. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:26:53 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201708#M9531</guid>
      <dc:creator>bbongrip</dc:creator>
      <dc:date>2019-05-29T09:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201805#M9541</link>
      <description>Using the Dropbox API, you can search for files and folders under a particular path using the /2/files/search endpoint:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-search" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-search&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you're using an official SDK, there will be a corresponding search method for that.</description>
      <pubDate>Thu, 12 Jan 2017 18:35:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201805#M9541</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-01-12T18:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201810#M9544</link>
      <description>thanks again greg. however I'm not really understanding how i would be able to search for all the filenames within a specific dropbox folder, and add those filenames to an array of strings, to then use as a base for my user to search for a specific string in that array. sorry if I'm not making to much sense. this is all very new to me. FYI - I'm using swift 3</description>
      <pubDate>Thu, 12 Jan 2017 19:12:36 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201810#M9544</guid>
      <dc:creator>bbongrip</dc:creator>
      <dc:date>2017-01-12T19:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201812#M9545</link>
      <description>&lt;P&gt;Since you're using Swift, are you using the official &lt;A href="https://github.com/dropbox/SwiftyDropbox" target="_self"&gt;SwiftyDropbox SDK&lt;/A&gt;? In that case, you'd use the &lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/FilesRoutes.html#/s:FC13SwiftyDropbox11FilesRoutes6searchFT4pathSS5querySS5startVs6UInt6410maxResultsS1_4modeOCS_5Files10SearchMode_GCS_10RpcRequestCS2_22SearchResultSerializerCS2_21SearchErrorSerializer_" target="_self"&gt;search method in FilesRoutes&lt;/A&gt;. As long as the call succeeds, it will return a &lt;A href="https://www.dropboxforum.com/t5/forums/replypage/board-id/101000014/message-id/SearchResult" target="_self"&gt;SearchResult&lt;/A&gt;. You can then use the &lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/Files/SearchResult.html#/s:vCC13SwiftyDropbox5Files12SearchResult7matchesGSaCS0_11SearchMatch_" target="_self"&gt;SearchResult.matches&lt;/A&gt;, which is an array of &lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/Files/SearchMatch.html" target="_self"&gt;SearchMatch&lt;/A&gt;. &lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/Files/SearchMatch.html#/s:vCC13SwiftyDropbox5Files11SearchMatch8metadataCS0_8Metadata" target="_self"&gt;SearchMatch.metadata&lt;/A&gt; contains the &lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/Files/Metadata.html" target="_self"&gt;FileMetadata&lt;/A&gt; for the match, which contains the &lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/Files/Metadata.html#/s:vCC13SwiftyDropbox5Files8Metadata4nameSS" target="_self"&gt;name&lt;/A&gt;, &lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/Files/Metadata.html#/s:vCC13SwiftyDropbox5Files8Metadata11pathDisplayGSqSS_" target="_self"&gt;pathDisplay&lt;/A&gt;, etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Give that a try and let us know if you run in to any issues.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 19:38:43 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201812#M9545</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-01-12T19:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201842#M9551</link>
      <description>&lt;P&gt;I was trying the search func that returns a SearchResult but I couldnt get it working. &amp;nbsp;here is some of my code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;hope this helps. &amp;nbsp;I really appreciate your help&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;// MARK: - UISearchBarDelegate
&amp;nbsp;&amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {&lt;BR /&gt;        var data = [String]()&lt;BR /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// IN HERE I WANT TO SEARCH MY APPS FOLDER IN DROPBOX AND POPULATE THE "data" STRING ARRAY WITH THE FILE NAMES OF ALL THE FILES IN THE FOLDER&lt;BR /&gt;&lt;BR /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; filtered = data.filter({ (text) -&amp;gt; Bool in
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; let tmp: NSString = text as NSString
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; let range = tmp.range(of: searchText, options: NSString.CompareOptions.caseInsensitive)
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return range.location != NSNotFound
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(filtered.count == 0){
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; searchActive = false
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else {
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; searchActive = true
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; searchTableView.reloadData()
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // These next two lines dynamicaly adjust the Search TableView's height
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; super.updateViewConstraints()
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; self.searchTableViewHeightConstraint?.constant = self.searchTableView.contentSize.height
&amp;nbsp; &amp;nbsp; }
&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 23:33:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201842#M9551</guid>
      <dc:creator>bbongrip</dc:creator>
      <dc:date>2017-01-12T23:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201844#M9553</link>
      <description>&lt;P&gt;I don't see in your code where you're attempting the &lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/FilesRoutes.html#/s:FC13SwiftyDropbox11FilesRoutes6searchFT4pathSS5querySS5startVs6UInt6410maxResultsS1_4modeOCS_5Files10SearchMode_GCS_10RpcRequestCS2_22SearchResultSerializerCS2_21SearchErrorSerializer_" target="_self"&gt;search&lt;/A&gt; call. Can you share that part? Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2017 23:42:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201844#M9553</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-01-12T23:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201847#M9554</link>
      <description>&lt;PRE&gt;func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
        var data = [String]()&lt;BR /&gt;
        data = search(path: "/stuckbykev/", query: searchText, start: 0, maxResults: 100, mode: .filename)
        
        filtered = data.filter({ (text) -&amp;gt; Bool in
            let tmp: NSString = text as NSString
            let range = tmp.range(of: searchText, options: NSString.CompareOptions.caseInsensitive)
            return range.location != NSNotFound
        })
        
        if(filtered.count == 0){
            searchActive = false
        } else {
            searchActive = true
        }

        searchTableView.reloadData()
        
        // These next two lines dynamicaly adjust the Search TableView's height
        super.updateViewConstraints()
        self.searchTableViewHeightConstraint?.constant = self.searchTableView.contentSize.height
    }
    
    @discardableResult open func search(path: String, query: String, start: UInt64 = 0, maxResults: UInt64 = 100, mode: Files.SearchMode = .filename) -&amp;gt; RpcRequest&amp;lt;Files.SearchResultSerializer, Files.SearchErrorSerializer&amp;gt; {
        
        
        return RpcRequest
    }
&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Jan 2017 23:52:34 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201847#M9554</guid>
      <dc:creator>bbongrip</dc:creator>
      <dc:date>2017-01-12T23:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201850#M9557</link>
      <description>Im thinking ListFolderResults is more what I'm looking for?</description>
      <pubDate>Thu, 12 Jan 2017 23:55:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201850#M9557</guid>
      <dc:creator>bbongrip</dc:creator>
      <dc:date>2017-01-12T23:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201986#M9567</link>
      <description>&lt;P&gt;Thanks! Is that the exact code you're trying though? I don't see the&amp;nbsp;Dropbox client object itself. You just seem to be calling a separate search method. Also, note that you need to implement the response callback. Just taking the return value won't give you what you're looking for.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The search method is an RPC-style call, so it would look like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/dropbox/SwiftyDropbox#rpc-style-request" target="_blank"&gt;https://github.com/dropbox/SwiftyDropbox#rpc-style-request&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Xcode autocomplete should also help with the parameters and response callback.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to search for a particular string, that is the right method. Alternatively, if you want to just list everything in a folder, &lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/FilesRoutes.html#/s:FC13SwiftyDropbox11FilesRoutes10listFolderFT4pathSS9recursiveSb16includeMediaInfoSb14includeDeletedSb31includeHasExplicitSharedMembersSb_GCS_10RpcRequestCCS_5Files26ListFolderResultSerializerCS2_25ListFolderErrorSerializer_" target="_self"&gt;listFolder&lt;/A&gt;&amp;nbsp;and &lt;A href="https://dropbox.github.io/SwiftyDropbox/api-docs/latest/Classes/FilesRoutes.html#/s:FC13SwiftyDropbox11FilesRoutes18listFolderContinueFT6cursorSS_GCS_10RpcRequestCCS_5Files26ListFolderResultSerializerCS2_33ListFolderContinueErrorSerializer_" target="_self"&gt;listFolderContinue&lt;/A&gt; would be better.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2017 18:45:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/201986#M9567</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-01-13T18:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202037#M9577</link>
      <description>&lt;P&gt;ok here is my code now. &amp;nbsp;ive been trying a few different things. but the RPC request was throwing me off. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;// MARK: - UISearchBarDelegate
    
    var data = Array&amp;lt;Files.Metadata&amp;gt;()
    var namesList = [String]()
    var filtered = [String]()
    
    func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
     
        // Verify user is logged into Dropbox
        if let dropboxClient = DropboxClientsManager.authorizedClient {
            
            // List folder contents and append to string array for return
            dropboxClient.files.listFolder(path: "stuckbykev/").response { response, error in
                if let response = response {
                    print(response)
                    
                    self.data = response.entries
                    for file in self.data {
                        self.namesList.append(file.name)
                    }
                } else if let error = error {
                    print(error)
                }
            }
        }
        
        print(namesList)
        
        filtered = namesList.filter({ (text) -&amp;gt; Bool in
            let tmp: NSString = text as NSString
            let range = tmp.range(of: searchText, options: NSString.CompareOptions.caseInsensitive)
            return range.location != NSNotFound
        })
        
        if(filtered.count == 0){
            searchActive = false
        } else {
            searchActive = true
        }

        searchTableView.reloadData()
        
        // These next two lines dynamicaly adjust the Search TableView's height
        super.updateViewConstraints()
        self.searchTableViewHeightConstraint?.constant = self.searchTableView.contentSize.height
    }&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the&amp;nbsp;error showing in the console, I think its a problem with my path string:&lt;/P&gt;
&lt;P&gt;precondition failed: "stuckbykev/ must match pattern "\A(?:(/(.|[\r\n])*)?|(ns:[0-9]+(/.*)?))\z": file /Users/Kevin/Desktop/SwiftyDropbox-master/Source/SwiftyDropbox/PlatformNeutral/StoneValidators.swift, line 9&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks again for all your help Greg!&lt;/P&gt;</description>
      <pubDate>Sat, 14 Jan 2017 00:27:53 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202037#M9577</guid>
      <dc:creator>bbongrip</dc:creator>
      <dc:date>2017-01-14T00:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202041#M9580</link>
      <description>Yes, non-root paths in Dropbox API v2 should start with a "/", so you probably mean to use "/stuckbykev".</description>
      <pubDate>Sat, 14 Jan 2017 00:34:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202041#M9580</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-01-14T00:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202052#M9586</link>
      <description>ok i fixed the path but now I'm getting this error in console:&lt;BR /&gt;&lt;BR /&gt;dropbox error: [request-id b8af2a8c93122c3395135c31410fbdc8] API route error - {&lt;BR /&gt;    ".tag" = path;&lt;BR /&gt;    path =     {&lt;BR /&gt;        ".tag" = "not_found";&lt;BR /&gt;    };&lt;BR /&gt;}</description>
      <pubDate>Sat, 14 Jan 2017 01:10:16 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202052#M9586</guid>
      <dc:creator>bbongrip</dc:creator>
      <dc:date>2017-01-14T01:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202053#M9587</link>
      <description>&lt;P&gt;That error indicates that the specified path, in this case "/stuckbykev", wasn't found in the linked account. If it's your own account, you can log in to &lt;A href="https://www.dropbox.com/" target="_self"&gt;the Dropbox web site&lt;/A&gt; to verify this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're using an app with the full Dropbox permission, that would just be a folder named "stuckbykev" in the root of your account.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're using an app with the app folder permission, that would be a folder named "stuckbykev" in the app folder for the app in your account, which is at /Apps/&amp;lt;APP_NAME&amp;gt; by default, for accounts with the English locale.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Jan 2017 01:15:35 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202053#M9587</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-01-14T01:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202063#M9588</link>
      <description>I finally got it!  lol   Thank you so much for you time and help.  It has been greatly appreciated and a learning experience for me.   I ended up using "//" as my path and it works perfect.  &lt;BR /&gt;Cheers!  &lt;BR /&gt;Kevin</description>
      <pubDate>Sat, 14 Jan 2017 02:53:27 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202063#M9588</guid>
      <dc:creator>bbongrip</dc:creator>
      <dc:date>2017-01-14T02:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: search dropbox folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202067#M9589</link>
      <description>I'm glad to hear you got this working. If you're trying to list the root though, the right value to supply is the empty string "" though.</description>
      <pubDate>Sat, 14 Jan 2017 05:43:38 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/search-dropbox-folder/m-p/202067#M9589</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-01-14T05:43:38Z</dc:date>
    </item>
  </channel>
</rss>

