<?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: Folder.add() no longer always returns a Future object? in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1659933#M11745</link>
    <description>&lt;P&gt;I'm having the exact same problem, and I can't use `result()`&amp;nbsp; immediately because it takes time for the item to upload.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Oct 2025 13:32:03 GMT</pubDate>
    <dc:creator>Ef</dc:creator>
    <dc:date>2025-10-23T13:32:03Z</dc:date>
    <item>
      <title>Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1642300#M11575</link>
      <description>&lt;P&gt;After returning to work after my summer holidays, I was told that a Python script which we use very frequently had stopped working. The relevant part of the script uploads objects to ArcGIS Online of various types, including File Geodatabases, using Folder.add().&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/python/latest/api-reference/arcgis.gis.toc.html#arcgis.gis._impl._content_manager.Folder.add" target="_blank" rel="noopener"&gt;As mentioned in the documentation&lt;/A&gt;&amp;nbsp;this function is supposed to return a concurrent.futures.Future object and nothing else. In the past this was true. However what has started to happen is that if the object added is a File Geodatabase it now returns some kind of Job object instead, of a type which I haven't seen documented. (type() names it as&amp;nbsp;arcgis.gis._impl._content_manager.folder.core.Job.) Whether this happens to other types I don't know, I haven't investigated this beyond what our script does.&lt;/P&gt;&lt;P&gt;Crucially, this Job object lacks the done() method which breaks both my script and the sample code on the linked documentation page, although result() still works on it. I was able to fix my script after I discovered that the Job object contained a property called futures. But now I need to have code to detect the type returned, since it varies depending on the type of object added.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I haven't found this change documented anywhere, so I'm not sure what's going on, if this is an intentional change that was not documented or a bug. But whatever it is, it broke scripts that we rely on and it was not easy to fix due to the lack of documentation.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Aug 2025 11:57:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1642300#M11575</guid>
      <dc:creator>IsakL</dc:creator>
      <dc:date>2025-08-15T11:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1642463#M11576</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/881462"&gt;@IsakL&lt;/a&gt;&amp;nbsp;You're right, the documentation is not accurate. This has been addressed and will be available in the next release. The server is returning a job and the Python API has begun taking advantage of that. The `folder.core.Job` object that is now being returned has the `result` method which will return the added `Item`.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;item_props = ItemProperties(
    title="new_shapefile_item",
    item_type=ItemTypeEnum.SHAPEFILE.value,
    tags=["tag1"],
    snippet="Demo item added from Python API",
)

add_job = folder.add(
    item_properties=item_props, file=r"E:\data\some_lines.zip"
)

print(type(add_job))
print(add_job.result())

# &amp;gt;&amp;gt;&amp;gt; &amp;lt;class 'arcgis.gis._impl._content_manager.folder.core.Job'&amp;gt;
# &amp;gt;&amp;gt;&amp;gt; &amp;lt;Item title:"new_shapefile_item" type:Shapefile owner:my_username&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 17:35:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1642463#M11576</guid>
      <dc:creator>KenGalliher1</dc:creator>
      <dc:date>2025-10-28T17:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1642765#M11577</link>
      <description>&lt;P&gt;Thank you for the information. Is there an equivalent to done() for the Job class? Preferably something that works the same for either type so we don't have to detect which type is being returned. This is what broke my script, right now I have it checking which type and then I do list(job.futures)[0].done(), not sure if that's the intended way though.&lt;/P&gt;&lt;P&gt;Also, does the Job class have a documentation page? I wasn't able to find one, not for that particular Job anyway.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Aug 2025 06:15:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1642765#M11577</guid>
      <dc:creator>IsakL</dc:creator>
      <dc:date>2025-08-18T06:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1645283#M11597</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/881462"&gt;@IsakL&lt;/a&gt;&amp;nbsp;The documentation page will be updated with samples. The `ContentManger.folder.core.Job` class will have a result method.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# Usage Example: Getting item resulting from a job

from arcgis.gis import GIS, ItemTypeEnum, ItemProperties
gis = GIS(profile="your_online_profile")

csv_file_path = "/path/to/your/data.csv"

new_data_item_job = gis_folder.add(
    item_properties=ItemProperties(
        title="new_source_csv_item",
        item_type=ItemTypeEnum.CSV,
        snippet="A new csv item.",
        description="CSV data item added through a folder add.",
        tags=["csv_item", "gis_data"]
    ),
    file=csv_file_path
)

if not new_data_item_job.done():
    print("... job processing...")
else:
    csv_item = new_data_item_job.result()

csv_item

&amp;lt;Item title:"new_source_csv_item" type:CSV owner:online_data_owner&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 25 Aug 2025 18:24:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1645283#M11597</guid>
      <dc:creator>KenGalliher1</dc:creator>
      <dc:date>2025-08-25T18:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1645464#M11599</link>
      <description>&lt;P&gt;Thank you for the response. I'll wait for the documentation to be updated if nothing else but my question was about .done() not .result().&amp;nbsp;&lt;/P&gt;&lt;P&gt;From your provided sample (which seems to be the same one from the documentation that I based my code on):if not new_data_item_job.done():&lt;/P&gt;&lt;LI-CODE lang="python"&gt;if not new_data_item_job.done():&lt;/LI-CODE&gt;&lt;P&gt;This line is what caused my issue. This throws an exception when the returned object is a&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;`ContentManger.folder.core.Job` rather than a Future. There doesn't seem to be a done() method in the Job class. Hopefully the updated documentation addresses this.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 06:27:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1645464#M11599</guid>
      <dc:creator>IsakL</dc:creator>
      <dc:date>2025-08-26T06:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1659933#M11745</link>
      <description>&lt;P&gt;I'm having the exact same problem, and I can't use `result()`&amp;nbsp; immediately because it takes time for the item to upload.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Oct 2025 13:32:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1659933#M11745</guid>
      <dc:creator>Ef</dc:creator>
      <dc:date>2025-10-23T13:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661011#M11754</link>
      <description>&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;Are you willing to share a code snippet of your workaround? I've been playing around with&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;list(job.futures)[0].done() in while loops this morning to no avail.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any insight will be greatly appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Bob&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2025 16:52:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661011#M11754</guid>
      <dc:creator>RobertHolliday</dc:creator>
      <dc:date>2025-10-27T16:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661012#M11755</link>
      <description>&lt;P&gt;Same issue here. I've been playing around with&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;list(job.futures)[0].done() as per IsakL without success.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2025 16:53:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661012#M11755</guid>
      <dc:creator>RobertHolliday</dc:creator>
      <dc:date>2025-10-27T16:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661064#M11756</link>
      <description>&lt;P&gt;Can you try with the latest version of the Python API (2.4.2)? The `folder.add` method returns a `Job` object. The `Job` object has the `done` method to allow for polling of the upload status and the `result()` method to retrieve the `Item`.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/python/latest/api-reference/arcgis.gis.toc.html#arcgis.gis._impl._content_manager.Folder.add" target="_blank"&gt;arcgis.gis module | ArcGIS API for Python | Esri Developer&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2025 18:33:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661064#M11756</guid>
      <dc:creator>KenGalliher1</dc:creator>
      <dc:date>2025-10-27T18:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661073#M11757</link>
      <description>&lt;P&gt;I'll verify API version and try again shortly.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2025 19:06:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661073#M11757</guid>
      <dc:creator>RobertHolliday</dc:creator>
      <dc:date>2025-10-27T19:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661179#M11758</link>
      <description>&lt;P&gt;The code that I am currently using looks like this:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;if isinstance(target_item_job, concurrent.futures.Future):
    target_item_future = target_item_job
else:
    target_item_future = list(target_item_job.futures)[0]

# Now you can call target_item_future.done()
    &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;It works on API version 2.4.1. It remains to be seen if it still works on 2.4.2, although as per the documentation it may no longer be needed since the Job class should have a done() method.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 07:30:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661179#M11758</guid>
      <dc:creator>IsakL</dc:creator>
      <dc:date>2025-10-28T07:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661447#M11761</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/108851"&gt;@KenGalliher1&lt;/a&gt;&amp;nbsp;, I upgraded to 2.4.2, and I'm now able to call `done()` for the `folder.add` returned object&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 17:31:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1661447#M11761</guid>
      <dc:creator>Ef</dc:creator>
      <dc:date>2025-10-28T17:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1663553#M11771</link>
      <description>&lt;P&gt;I am using API version 2.4.1 &amp;amp; arcpy. Suggestions in this thread have been helpful, but ultimately I ended up using &lt;SPAN&gt;arcpy&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;management&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;SharePackage for uploading/publishing vector tile packages.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;There was something peculiar about the set of tile packages i was trying to upload via folder.add. Uploads were timing out even after I set a 2 hour timeout. Other packages of the same size and larger are uploading in minutes via folder.add.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 14:30:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1663553#M11771</guid>
      <dc:creator>RobertHolliday</dc:creator>
      <dc:date>2025-11-05T14:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1663554#M11772</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 14:31:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1663554#M11772</guid>
      <dc:creator>RobertHolliday</dc:creator>
      <dc:date>2025-11-05T14:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1664922#M11777</link>
      <description>&lt;P&gt;How did you upgrade? &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/696297"&gt;@Ef&lt;/a&gt;,&amp;nbsp;The upgrade all button in Package Manager is pretty flaky, and I don't have an option to individually upgrade that package.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 15:35:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1664922#M11777</guid>
      <dc:creator>adongre1</dc:creator>
      <dc:date>2025-11-11T15:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1664923#M11778</link>
      <description>&lt;P&gt;Well, seems that it's allowable directly through miniconda.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 15:42:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1664923#M11778</guid>
      <dc:creator>adongre1</dc:creator>
      <dc:date>2025-11-11T15:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1664989#M11779</link>
      <description>&lt;P&gt;Final thought: Seems that ESRI needs to release a patch to ArcPro so we can get a default conda environment&amp;nbsp; iwth python 3.13 to get the package upgraded to 2.4.2, in lieu of writing my own http requests against their API.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 20:08:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1664989#M11779</guid>
      <dc:creator>adongre1</dc:creator>
      <dc:date>2025-11-11T20:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1691725#M11880</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/108851"&gt;@KenGalliher1&lt;/a&gt;&amp;nbsp;This is a bit confusing. We upgraded from Enterprise 11.3 to 11.5 and our GP Web Tool now returns an error that Job object has no 'done' attribute. Reading the github post it says the documentation has been updated to reflect that but the documentations still says 'done' method exists? Or you have removed and then re added it in the latest 2.4.2 verison of Python API?&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-python-api/issues/2273" target="_blank" rel="noopener"&gt;https://github.com/Esri/arcgis-python-api/issues/2273&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 16:02:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1691725#M11880</guid>
      <dc:creator>SerjStol</dc:creator>
      <dc:date>2026-03-20T16:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1691749#M11881</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/299119"&gt;@SerjStol&lt;/a&gt;&amp;nbsp;Are you able to use the result() method instead of done()? I am not sure why we're seeing a wide range of discrepancies with Folder.add. I tested with ArcGIS Pro 3.5 which has version 2.4.1 of the Python API and get expected results:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from arcgis.gis import GIS
import uuid

portal = GIS(profile="your_enterprise_profile", verify_cert=False
)
portal_folder = portal.content.folders.get()
item_props = {
    "servicePassword": "abc123",
    "serviceUsername": "arcgis_python",
    "tags": "Tool, Service, ArcGIS Server",
    "title": f"test_async_folder_issue_{uuid.uuid4()}",
    "type": "Geoprocessing Service",
    "url": "https://elevation.arcgis.com/arcgis/rest/services/Tools/Elevation/GPServer",
}
svc_item = portal_folder.add(item_props)
print(type(svc_item))
print(svc_item.done())
print(svc_item.result())
svc_item.result().delete(permanent=True)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Type: &amp;lt;class 'concurrent.futures._base.Future'&amp;gt;
Done: True
Result: &amp;lt;Item title:"test_async_folder_issue_329d7c52-fa01-4683-9bfa-2b212a18f387" type:Geoprocessing Toolbox owner:arcgis_python&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 16:58:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1691749#M11881</guid>
      <dc:creator>KenGalliher1</dc:creator>
      <dc:date>2026-03-20T16:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Folder.add() no longer always returns a Future object?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1691762#M11882</link>
      <description>&lt;P&gt;Thanks for the prompt reply. Yes, this is exactly what we did in the end, replace done() with result() and it works now. I was just confused as it worked before in 11.3, then now in with Enterprise 11.5 that has ArcGIS Python API 2.4.1 ( i checked version in ArcGIS Server) it gives an error. Yet the documentation says done() should work. We have ArcGIS Pro 3.3 from where we did the publishing which has 2.3.0 version of Python API, but i would of thought that doesnt matter since its the 2.4.1 version thats running the Web Tool in ArcGIS Server.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 17:22:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/folder-add-no-longer-always-returns-a-future/m-p/1691762#M11882</guid>
      <dc:creator>SerjStol</dc:creator>
      <dc:date>2026-03-20T17:22:15Z</dc:date>
    </item>
  </channel>
</rss>

