<?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: Get Folders Action - with certain conditions in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Get-Folders-Action-with-certain-conditions/m-p/63630#M16541</link>
    <description>Hi Tejas,&lt;BR /&gt;&lt;BR /&gt;Not sure if this will be able to solve the issue as I didn't test the same with 1 lac folders &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt; &lt;BR /&gt;&lt;BR /&gt;But well, you can give it a shot as I am using LINQ queries with Folder Retrieval as a part of the below custom code stage. I am using LINQ queries as it can speed up your collection filtering by miles.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can create a new business object and add the below External References ('&lt;STRONG&gt;S&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;ystem.Data.DataSetExtensions.dll&lt;/STRONG&gt;&lt;SPAN&gt;', '&lt;/SPAN&gt;&lt;STRONG&gt;System.Core.dll&lt;/STRONG&gt;&lt;SPAN&gt;') and Namespace Imports ('&lt;/SPAN&gt;&lt;STRONG&gt;System.Data.DataSetExtensions&lt;/STRONG&gt;&lt;SPAN&gt;', '&lt;/SPAN&gt;&lt;STRONG&gt;System.LINQ&lt;/STRONG&gt;&lt;SPAN&gt;', &lt;STRONG&gt;'System.IO'&lt;/STRONG&gt; and '&lt;STRONG&gt;System.Collections.Generic&lt;/STRONG&gt;') on the Page Description stage of your Initialize action for the LINQ queries to work properly. Also, ensure that the language is selected as '&lt;/SPAN&gt;&lt;STRONG&gt;Visual Basic&lt;/STRONG&gt;&lt;SPAN&gt;':&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26855.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26986i568B92B791F34EC6/image-size/large?v=v2&amp;amp;px=999" role="button" title="26855.png" alt="26855.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Once you have the updated code options as shown above, create a new action named '&lt;STRONG&gt;Get Folders By Filters&lt;/STRONG&gt;' and pass three input arguments, &lt;STRONG&gt;&lt;EM&gt;Folder Path&lt;/EM&gt;&lt;/STRONG&gt; (Text) and&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Start Date&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;(Date) and &lt;EM&gt;&lt;STRONG&gt;End Date&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;(Date). Based on the field names that you provide the unique records will be fetched from the Input Collection. Also, set an Output parameter as&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Folders&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;(Collection) for this action as shown below:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26856.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26987i024BED301BEA7CA3/image-size/large?v=v2&amp;amp;px=999" role="button" title="26856.png" alt="26856.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Add the code stage and use the below code with the input and out arguments as show:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Dim folderDir As New DirectoryInfo(Folder_Path)&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Dim folder_enum = (From folder In folderDir.GetDirectories() _ &lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Where folder.LastWriteTimeUtc.Date &amp;gt;= Start_date And folder.LastWriteTimeUtc.Date &amp;lt;= End_Date _ &lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Select New With {.FolderName = folder.Name, .Path = folder.FullName, .Created = folder.CreationTimeUtc, .LastAccessed = folder.LastAccessTimeUtc, _ &lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;.LastWritten = folder.LastWriteTimeUtc})&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Dim dt As New DataTable&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;dt.Columns.Add("Folder Name")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;dt.Columns.Add("Path")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;dt.Columns.Add("Created")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;dt.Columns.Add("Last Accessed")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;dt.Columns.Add("Last Written")&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Dim dr As DataRow&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;For Each item In folder_enum&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr = dt.NewRow&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr("Folder Name") = item.FolderName&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr("Path") = item.Path&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr("Created") = item.Created&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr("Last Accessed") = item.LastAccessed&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr("Last Written") = item.LastWritten&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dt.Rows.Add(dr)&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Next&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Folders = dt&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26857.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26990i356C7A352B5B2F1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="26857.png" alt="26857.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;SPAN&gt;The run results are as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Input Arguments:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26858.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26994iB6DBB84525E728A7/image-size/large?v=v2&amp;amp;px=999" role="button" title="26858.png" alt="26858.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Output Result:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26859.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26989iA2908E2E8C00E840/image-size/large?v=v2&amp;amp;px=999" role="button" title="26859.png" alt="26859.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;Wonderbotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Thu, 17 Mar 2022 07:08:00 GMT</pubDate>
    <dc:creator>devneetmohanty07</dc:creator>
    <dc:date>2022-03-17T07:08:00Z</dc:date>
    <item>
      <title>Get Folders Action - with certain conditions</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Get-Folders-Action-with-certain-conditions/m-p/63627#M16538</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I'm looking for an option to get all folders created before/after certain DateTime Or only get X number of folders based on ascending descending order. Kind of&amp;nbsp; direct filter before we get collection.&lt;BR /&gt;&lt;BR /&gt;I have a target folder containing appx 1lac files and my first step is to get all this in a collection and then filter only required files for further operation.&lt;BR /&gt;&lt;BR /&gt;My concern is System.OutOfMemory exception if this scenario goes to production.&lt;BR /&gt;&lt;BR /&gt;Those 1 lac files will be there in target folder due to other tool dependency and it can grow in future. Meaning we have no solid control of archiving or deleting due to certain dependency.&lt;BR /&gt;&lt;BR /&gt;I'm using Get Folders action as of now from Utility-File Management VBO.&lt;BR /&gt;&lt;BR /&gt;So looking for some workaround or alternative.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Tejaskumar Darji&lt;BR /&gt;Sr. RPA Consultant-Automation Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Mar 2022 12:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Get-Folders-Action-with-certain-conditions/m-p/63627#M16538</guid>
      <dc:creator>Tejaskumar_Darji</dc:creator>
      <dc:date>2022-03-16T12:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: Get Folders Action - with certain conditions</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Get-Folders-Action-with-certain-conditions/m-p/63628#M16539</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2159"&gt;@Tejaskumar_Darji&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;I duplicate and change little bit the "Get Folder" actio​n to create "Get Folder - Filter" action in the "&lt;SPAN&gt;Utility-File Management" VBO.&lt;BR /&gt;&lt;BR /&gt;Find attached to this post.&lt;BR /&gt;&lt;BR /&gt;For use it. Only need to put the two dates that you want to filter.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26853.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26984i0C4F7EEC56B15A2B/image-size/large?v=v2&amp;amp;px=999" role="button" title="26853.png" alt="26853.png" /&gt;&lt;/span&gt;&lt;BR /&gt;I try it and works pretty good.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps you!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;See you in the community, bye &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Pablo Sarabia&lt;BR /&gt;Architect&lt;BR /&gt;Altamira Assets Management&lt;BR /&gt;Madrid&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Mar 2022 06:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Get-Folders-Action-with-certain-conditions/m-p/63628#M16539</guid>
      <dc:creator>PabloSarabia</dc:creator>
      <dc:date>2022-03-17T06:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: Get Folders Action - with certain conditions</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Get-Folders-Action-with-certain-conditions/m-p/63629#M16540</link>
      <description>I didn't see the upload error, sorry &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here you have the attachment &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Pablo Sarabia&lt;BR /&gt;Architect&lt;BR /&gt;Altamira Assets Management&lt;BR /&gt;Madrid&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Mar 2022 06:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Get-Folders-Action-with-certain-conditions/m-p/63629#M16540</guid>
      <dc:creator>PabloSarabia</dc:creator>
      <dc:date>2022-03-17T06:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Get Folders Action - with certain conditions</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Get-Folders-Action-with-certain-conditions/m-p/63630#M16541</link>
      <description>Hi Tejas,&lt;BR /&gt;&lt;BR /&gt;Not sure if this will be able to solve the issue as I didn't test the same with 1 lac folders &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt; &lt;BR /&gt;&lt;BR /&gt;But well, you can give it a shot as I am using LINQ queries with Folder Retrieval as a part of the below custom code stage. I am using LINQ queries as it can speed up your collection filtering by miles.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can create a new business object and add the below External References ('&lt;STRONG&gt;S&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;ystem.Data.DataSetExtensions.dll&lt;/STRONG&gt;&lt;SPAN&gt;', '&lt;/SPAN&gt;&lt;STRONG&gt;System.Core.dll&lt;/STRONG&gt;&lt;SPAN&gt;') and Namespace Imports ('&lt;/SPAN&gt;&lt;STRONG&gt;System.Data.DataSetExtensions&lt;/STRONG&gt;&lt;SPAN&gt;', '&lt;/SPAN&gt;&lt;STRONG&gt;System.LINQ&lt;/STRONG&gt;&lt;SPAN&gt;', &lt;STRONG&gt;'System.IO'&lt;/STRONG&gt; and '&lt;STRONG&gt;System.Collections.Generic&lt;/STRONG&gt;') on the Page Description stage of your Initialize action for the LINQ queries to work properly. Also, ensure that the language is selected as '&lt;/SPAN&gt;&lt;STRONG&gt;Visual Basic&lt;/STRONG&gt;&lt;SPAN&gt;':&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26855.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26986i568B92B791F34EC6/image-size/large?v=v2&amp;amp;px=999" role="button" title="26855.png" alt="26855.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Once you have the updated code options as shown above, create a new action named '&lt;STRONG&gt;Get Folders By Filters&lt;/STRONG&gt;' and pass three input arguments, &lt;STRONG&gt;&lt;EM&gt;Folder Path&lt;/EM&gt;&lt;/STRONG&gt; (Text) and&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Start Date&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;(Date) and &lt;EM&gt;&lt;STRONG&gt;End Date&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;(Date). Based on the field names that you provide the unique records will be fetched from the Input Collection. Also, set an Output parameter as&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Folders&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;(Collection) for this action as shown below:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26856.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26987i024BED301BEA7CA3/image-size/large?v=v2&amp;amp;px=999" role="button" title="26856.png" alt="26856.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Add the code stage and use the below code with the input and out arguments as show:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Dim folderDir As New DirectoryInfo(Folder_Path)&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Dim folder_enum = (From folder In folderDir.GetDirectories() _ &lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Where folder.LastWriteTimeUtc.Date &amp;gt;= Start_date And folder.LastWriteTimeUtc.Date &amp;lt;= End_Date _ &lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;Select New With {.FolderName = folder.Name, .Path = folder.FullName, .Created = folder.CreationTimeUtc, .LastAccessed = folder.LastAccessTimeUtc, _ &lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;.LastWritten = folder.LastWriteTimeUtc})&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Dim dt As New DataTable&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;dt.Columns.Add("Folder Name")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;dt.Columns.Add("Path")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;dt.Columns.Add("Created")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;dt.Columns.Add("Last Accessed")&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;dt.Columns.Add("Last Written")&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Dim dr As DataRow&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;For Each item In folder_enum&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr = dt.NewRow&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr("Folder Name") = item.FolderName&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr("Path") = item.Path&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr("Created") = item.Created&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr("Last Accessed") = item.LastAccessed&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dr("Last Written") = item.LastWritten&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE&gt;&amp;nbsp; &amp;nbsp;dt.Rows.Add(dr)&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Next&lt;/CODE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;Folders = dt&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26857.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26990i356C7A352B5B2F1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="26857.png" alt="26857.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;SPAN&gt;The run results are as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Input Arguments:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26858.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26994iB6DBB84525E728A7/image-size/large?v=v2&amp;amp;px=999" role="button" title="26858.png" alt="26858.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Output Result:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="26859.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26989iA2908E2E8C00E840/image-size/large?v=v2&amp;amp;px=999" role="button" title="26859.png" alt="26859.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;----------------------------------&lt;BR /&gt;Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Devneet Mohanty&lt;BR /&gt;Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,&lt;BR /&gt;Wonderbotz India Pvt. Ltd.&lt;BR /&gt;Blue Prism Community MVP | Blue Prism 7x Certified Professional&lt;BR /&gt;Website: &lt;A href="https://devneet.github.io/" target="test_blank"&gt;https://devneet.github.io/&lt;/A&gt;&lt;BR /&gt;Email: devneetmohanty07@gmail.com&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Mar 2022 07:08:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Get-Folders-Action-with-certain-conditions/m-p/63630#M16541</guid>
      <dc:creator>devneetmohanty07</dc:creator>
      <dc:date>2022-03-17T07:08:00Z</dc:date>
    </item>
  </channel>
</rss>

