<?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: Move shapefile from one folder to another using python in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/move-shapefile-from-one-folder-to-another-using/m-p/336243#M26374</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If i want to write the shapefile to a different destination would i do that it in the outfeature parameter. Do i just add the path of the new folder in my function? I guess i don't know how to work with different folders in here. How to i specify where to folder?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;arcpy.CopyFeatures_management(shapefileName, outFeature)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Oct 2013 15:32:45 GMT</pubDate>
    <dc:creator>DanielJimenez2</dc:creator>
    <dc:date>2013-10-11T15:32:45Z</dc:date>
    <item>
      <title>Move shapefile from one folder to another using python</title>
      <link>https://community.esri.com/t5/python-questions/move-shapefile-from-one-folder-to-another-using/m-p/336241#M26372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm working with shapefiles and using the ArcPy library. My script is creating a new shapefile based on a join and I want to know how to move the newly joined-shapefile from the environment location to a new folder. Any ideas on how to do this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 15:26:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/move-shapefile-from-one-folder-to-another-using/m-p/336241#M26372</guid>
      <dc:creator>DanielJimenez2</dc:creator>
      <dc:date>2013-10-11T15:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Move shapefile from one folder to another using python</title>
      <link>https://community.esri.com/t5/python-questions/move-shapefile-from-one-folder-to-another-using/m-p/336242#M26373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can use the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001700000051000000"&gt;copy tool&lt;/A&gt;&lt;SPAN&gt;, and then the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Delete/001700000052000000/"&gt;delete tool&lt;/A&gt;&lt;SPAN&gt; on the old file. Though it would make more sense just to write the shapefile to the final destination to start with.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 15:29:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/move-shapefile-from-one-folder-to-another-using/m-p/336242#M26373</guid>
      <dc:creator>JasonScheirer</dc:creator>
      <dc:date>2013-10-11T15:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Move shapefile from one folder to another using python</title>
      <link>https://community.esri.com/t5/python-questions/move-shapefile-from-one-folder-to-another-using/m-p/336243#M26374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If i want to write the shapefile to a different destination would i do that it in the outfeature parameter. Do i just add the path of the new folder in my function? I guess i don't know how to work with different folders in here. How to i specify where to folder?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;arcpy.CopyFeatures_management(shapefileName, outFeature)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 15:32:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/move-shapefile-from-one-folder-to-another-using/m-p/336243#M26374</guid>
      <dc:creator>DanielJimenez2</dc:creator>
      <dc:date>2013-10-11T15:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Move shapefile from one folder to another using python</title>
      <link>https://community.esri.com/t5/python-questions/move-shapefile-from-one-folder-to-another-using/m-p/336244#M26375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="plain" name="code"&gt;import os&amp;nbsp; import arcpy&amp;nbsp; shapeFileName = r"c:\some\output.shp" outFeature = os.path.join(r"c:\new\folder", os.path.basename(shapeFileName)) arcpy.CopyFeatures_management(shapefileName, outFeature)&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 16:00:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/move-shapefile-from-one-folder-to-another-using/m-p/336244#M26375</guid>
      <dc:creator>JasonScheirer</dc:creator>
      <dc:date>2013-10-11T16:00:19Z</dc:date>
    </item>
  </channel>
</rss>

