<?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: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message. in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47560#M3789</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;of course, I should have noticed this.&lt;/P&gt;&lt;P&gt;fcs is just a list of the string names of the feature classes/shapefiles in that workspace.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;simply join the workspace path to fc in fcs to give a full filepath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for fc in fcs:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; fc_path = os.path.join(&lt;SPAN style="background-color: #ffffff;"&gt;arcpy.env.workspace, fc)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Mar 2020 19:34:25 GMT</pubDate>
    <dc:creator>DavidPike</dc:creator>
    <dc:date>2020-03-19T19:34:25Z</dc:date>
    <item>
      <title>I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47552#M3781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;import arcpy&lt;/P&gt;&lt;P&gt;# Set workspace for listing&lt;BR /&gt;arcpy.env.workspace = r"T:\chastain\PrgGIS\World"&lt;BR /&gt;# Get a list of all feature classes&lt;BR /&gt;fcs = arcpy.ListFeatureClasses("*")&lt;BR /&gt;# Loop through the list&lt;BR /&gt;for fc in fcs:&lt;BR /&gt; #print names&lt;BR /&gt; print("These feature classes are in the World folder", fc)&lt;BR /&gt; Output = fc + "Buff"&lt;BR /&gt; arcpy.Buffer_analysis(fc, Output, "100 Meters")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR 000670: output Output Feature Class is same as input Input Features&lt;BR /&gt;Failed to execute (Buffer).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 18:30:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47552#M3781</guid>
      <dc:creator>JohnnyMonds</dc:creator>
      <dc:date>2020-03-19T18:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47553#M3782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put a couple print statements in before you call Buffer to see what the values of fc and Output are.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 18:34:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47553#M3782</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-03-19T18:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47554#M3783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;currently you're trying to add "buff" to something with a .shp extension I guess?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for fc in fcs:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; output_path = fc[:-4] + "_buff"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 18:35:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47554#M3783</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2020-03-19T18:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47555#M3784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;with the '[:-4]&lt;/P&gt;&lt;P&gt;the error is&lt;/P&gt;&lt;P&gt;arcgisscripting.ExecuteError: ERROR 000210: Cannot create output T:\chastain\PrgGIS\World\CitiesBuff.shp&lt;BR /&gt;Failed to execute (Buffer).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 18:39:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47555#M3784</guid>
      <dc:creator>JohnnyMonds</dc:creator>
      <dc:date>2020-03-19T18:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47556#M3785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it looks like this:&lt;/P&gt;&lt;P&gt;import arcpy&lt;/P&gt;&lt;P&gt;# Set workspace for listing&lt;BR /&gt;arcpy.env.workspace = r"T:\chastain\PrgGIS\World"&lt;BR /&gt;# Get a list of all feature classes&lt;BR /&gt;fcs = arcpy.ListFeatureClasses("*")&lt;BR /&gt;# Loop through the list&lt;BR /&gt;for fc in fcs:&lt;BR /&gt; #print names&lt;BR /&gt; print("These feature classes are in the World folder", fc)&lt;BR /&gt;These feature classes are in the World folder Cities.shp&lt;BR /&gt;These feature classes are in the World folder Country.shp&lt;BR /&gt;These feature classes are in the World folder Lakes.shp&lt;BR /&gt;These feature classes are in the World folder Rivers.shp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 18:41:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47556#M3785</guid>
      <dc:creator>JohnnyMonds</dc:creator>
      <dc:date>2020-03-19T18:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47557#M3786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't help people who work with shape files.&amp;nbsp; &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&amp;nbsp; You should use &lt;A class="link-titled" href="https://docs.python.org/3/library/os.path.html" title="https://docs.python.org/3/library/os.path.html"&gt;os.path — Common pathname manipulations — Python 3.8.2 documentation&lt;/A&gt; to split the shape file name from the extension, add the suffix to the name, and then rejoin the name and extension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 18:45:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47557#M3786</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-03-19T18:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47558#M3787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry I forgot the .shp extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #3d3d3d; font-family: inherit; font-size: 100%; font-style: inherit; font-variant: normal; font-weight: inherit; letter-spacing: normal; orphans: 2; outline-color: invert; outline-style: none; outline-width: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; vertical-align: baseline; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; padding: 0px; margin: 0px; border: 0px none currentColor;"&gt;for fc in fcs:&lt;/P&gt;&lt;P style="border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #3d3d3d; font-family: inherit; font-size: 100%; font-style: inherit; font-variant: normal; font-weight: inherit; letter-spacing: normal; orphans: 2; outline-color: invert; outline-style: none; outline-width: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; vertical-align: baseline; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; padding: 0px; margin: 0px; border: 0px none currentColor;"&gt;&amp;nbsp; &amp;nbsp; output_path = fc[:-4] + "_buff.shp"&lt;/P&gt;&lt;P style="border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #3d3d3d; font-family: inherit; font-size: 100%; font-style: inherit; font-variant: normal; font-weight: inherit; letter-spacing: normal; orphans: 2; outline-color: invert; outline-style: none; outline-width: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; vertical-align: baseline; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; padding: 0px; margin: 0px; border: 0px none currentColor;"&gt;&lt;/P&gt;&lt;P style="border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #3d3d3d; font-family: inherit; font-size: 100%; font-style: inherit; font-variant: normal; font-weight: inherit; letter-spacing: normal; orphans: 2; outline-color: invert; outline-style: none; outline-width: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; vertical-align: baseline; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; padding: 0px; margin: 0px; border: 0px none currentColor;"&gt;or as Joshua says:&lt;/P&gt;&lt;P style="border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #3d3d3d; font-family: inherit; font-size: 100%; font-style: inherit; font-variant: normal; font-weight: inherit; letter-spacing: normal; orphans: 2; outline-color: invert; outline-style: none; outline-width: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; vertical-align: baseline; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; padding: 0px; margin: 0px; border: 0px none currentColor;"&gt;for fc in fcs:&lt;/P&gt;&lt;P style="border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #3d3d3d; font-family: inherit; font-size: 100%; font-style: inherit; font-variant: normal; font-weight: inherit; letter-spacing: normal; orphans: 2; outline-color: invert; outline-style: none; outline-width: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; vertical-align: baseline; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; padding: 0px; margin: 0px; border: 0px none currentColor;"&gt;&amp;nbsp; &amp;nbsp; output_path = os.path.join(fc[:4], "buff.shp")&lt;/P&gt;&lt;P style="border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #3d3d3d; font-family: inherit; font-size: 100%; font-style: inherit; font-variant: normal; font-weight: inherit; letter-spacing: normal; orphans: 2; outline-color: invert; outline-style: none; outline-width: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; vertical-align: baseline; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; padding: 0px; margin: 0px; border: 0px none currentColor;"&gt;&lt;/P&gt;&lt;P style="border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #3d3d3d; font-family: inherit; font-size: 100%; font-style: inherit; font-variant: normal; font-weight: inherit; letter-spacing: normal; orphans: 2; outline-color: invert; outline-style: none; outline-width: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; vertical-align: baseline; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; padding: 0px; margin: 0px; border: 0px none currentColor;"&gt;or even better as Joshua says, save it as a feature class.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 18:50:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47558#M3787</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2020-03-19T18:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47559#M3788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the program is supposed to get the names, print them, buffer them and then to a new output. so it looks like it is stopping on the buffer end. So now I have changed the Output and it looks like it is trying to work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; Output = r"C:\Users\johnny.monds\Desktop\Test" +fc[:-4] + "_Buff.shp"&lt;BR /&gt; arcpy.Buffer_analysis(fc, Output, "100 Meters")&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;These feature classes are in the World folder Cities.shp&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;These feature classes are in the World folder Country.shp&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;Traceback (most recent call last):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; File "&amp;lt;string&amp;gt;", line 12, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\analysis.py", line 1101, in Buffer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; raise e&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\analysis.py", line 1098, in Buffer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; retval = convertArcObjectToPythonObject(gp.Buffer_analysis(*gp_fixargs((in_features, out_feature_class, buffer_distance_or_field, line_side, line_end_type, dissolve_option, dissolve_field, method), True)))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; File "c:\program files\arcgis\pro\Resources\arcpy\arcpy\geoprocessing\_base.py", line 506, in &amp;lt;lambda&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; return lambda *args: val(*gp_fixargs(args, True))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;arcgisscripting.ExecuteError: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color: #993300;"&gt;ERROR 000732: Input Features: Dataset Country.shp does not exist or is not supported&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #993300;"&gt;Failed to execute (Buffer).&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 19:12:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47559#M3788</guid>
      <dc:creator>JohnnyMonds</dc:creator>
      <dc:date>2020-03-19T19:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47560#M3789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;of course, I should have noticed this.&lt;/P&gt;&lt;P&gt;fcs is just a list of the string names of the feature classes/shapefiles in that workspace.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;simply join the workspace path to fc in fcs to give a full filepath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for fc in fcs:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; fc_path = os.path.join(&lt;SPAN style="background-color: #ffffff;"&gt;arcpy.env.workspace, fc)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 19:34:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47560#M3789</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2020-03-19T19:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47561#M3790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok first, I want to THANK YOU. You have been a gigantic help. Second, I have to revisit this tomorrow. Third, I think I am having an issue with the size of the shapefile and buffer because it is giving me a general error, and my internet has slowed somewhat, I don't know why. Fourth, I want to thank you for your patience, I am a new learner and some of the small stuff escapes me. Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 20:09:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47561#M3790</guid>
      <dc:creator>JohnnyMonds</dc:creator>
      <dc:date>2020-03-19T20:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47562#M3791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey you're very welcome Johnny. Two final points:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. dependant on the buffer distance you may want to consider a "GEODESIC" buffer to preserve true distance.&lt;/P&gt;&lt;P&gt;2. Buffering country sized polyline data is extreeeeeemely processing intensive&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2020 20:22:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47562#M3791</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2020-03-19T20:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: I am trying to buffer multiple feature classes from a directory but I keep getting the same error message.</title>
      <link>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47563#M3792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, update...Found the Country shapefile to be corrupted, thank you for your help. here is my final script&lt;/P&gt;&lt;P&gt;import arcpy,os&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #999999;"&gt;# Set workspace for listing&lt;/SPAN&gt;&lt;BR /&gt;arcpy.env.workspace = r"T:\chastain\PrgGIS\World"&lt;BR /&gt;&lt;SPAN style="color: #999999;"&gt;# Get a list of all feature classes&lt;/SPAN&gt;&lt;BR /&gt;fcs = arcpy.ListFeatureClasses("*")&lt;BR /&gt;&lt;SPAN style="color: #999999;"&gt;# Loop through the list&lt;/SPAN&gt;&lt;BR /&gt;for fc in fcs:&lt;BR /&gt; fc_path = os.path.join(arcpy.env.workspace, fc)&lt;BR /&gt; &lt;SPAN style="color: #999999;"&gt;#print names&lt;/SPAN&gt;&lt;BR /&gt; print("These feature classes are in the World folder", fc)&lt;BR /&gt; Output = r"C:\Users\johnny.monds\Desktop\Test" +fc[:-4] + "_Buff.shp"&lt;BR /&gt; arcpy.Buffer_analysis(fc, Output, "100 Meters", "FULL", "ROUND", "ALL")&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2020 15:52:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/i-am-trying-to-buffer-multiple-feature-classes/m-p/47563#M3792</guid>
      <dc:creator>JohnnyMonds</dc:creator>
      <dc:date>2020-03-20T15:52:07Z</dc:date>
    </item>
  </channel>
</rss>

