<?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: how can i work around path names in arcpy having spaces in them, if i can? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706475#M54748</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Dan's comments.&amp;nbsp; Additionally, it helps to paste the exact error and traceback.&amp;nbsp; I am also suspect of your location variable, what is stored in it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Feb 2019 16:31:53 GMT</pubDate>
    <dc:creator>JoshuaBixby</dc:creator>
    <dc:date>2019-02-11T16:31:53Z</dc:date>
    <item>
      <title>how can i work around path names in arcpy having spaces in them, if i can?</title>
      <link>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706468#M54741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0px 0px 15px; padding: 0px; border: 0px #242729; text-align: left; color: #242729; text-transform: none; line-height: 19.5px; text-indent: 0px; letter-spacing: normal; clear: both; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; vertical-align: baseline; white-space: normal; box-sizing: border-box; orphans: 2; font-size-adjust: none; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;I'm trying to create an arcpy tool for one of the teams, and I have everything working. But when I redirect the path names to be where their data is saved and where they want the outputs to go to, I get errors like ERROR:00732 or ERROR:00210 and its because of the folder directories having spaces in their names. is there a work around for this? as getting the team to rename all their folders to exclude spaces isn't an easy sell&lt;/P&gt;&lt;P style="margin: 0px 0px 15px; padding: 0px; border: 0px #242729; text-align: left; color: #242729; text-transform: none; line-height: 19.5px; text-indent: 0px; letter-spacing: normal; clear: both; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; text-decoration: none; word-spacing: 0px; vertical-align: baseline; white-space: normal; box-sizing: border-box; orphans: 2; font-size-adjust: none; background-color: transparent; -webkit-text-stroke-width: 0px;"&gt;thanks lads and lasses&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2019 16:32:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706468#M54741</guid>
      <dc:creator>ronancorrigan</dc:creator>
      <dc:date>2019-02-08T16:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: how can i work around path names in arcpy having spaces in them, if i can?</title>
      <link>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706469#M54742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;pth &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"c:\the path\with\a\space\in\its\name"&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;pth&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
c&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;      he path\&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt;\space\&lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt;\its
ame

pth &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"c:\the path\with\a\space\in\its\name"&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;pth&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
c&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;\the path\&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt;\a\space\&lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt;\its\name&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;it isn't just spaces, any of a number of letters that follow the \ cause problems...&lt;/P&gt;&lt;P&gt;I have identified a few.&lt;/P&gt;&lt;P&gt;note the little 'r' before the path name?&amp;nbsp; that is called 'raw' encoding.&lt;/P&gt;&lt;P&gt;it is one of just many options.&lt;/P&gt;&lt;P&gt;since they won't get the smarts &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt; you will have to ensure that you do it for them&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:41:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706469#M54742</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T05:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: how can i work around path names in arcpy having spaces in them, if i can?</title>
      <link>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706470#M54743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;share this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/blogs/dan_patterson/2016/08/14/filenames-and-file-paths-in-python"&gt;/blogs/dan_patterson/2016/08/14/filenames-and-file-paths-in-python&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;even Microsoft doesn't recommend spaces and other flotsam in filenames or paths. &amp;nbsp;&lt;/P&gt;&lt;P&gt;I bet the team has a space or a period in their 'User' profile too.&amp;nbsp; Caused us headaches for a while until IT and us got things straightened out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2019 16:41:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706470#M54743</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2019-02-08T16:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: how can i work around path names in arcpy having spaces in them, if i can?</title>
      <link>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706471#M54744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Dan that spaces, commas, period, etc... in path names isn't a great idea, it raises the risk that some program will get tripped up when working with files and folders.&amp;nbsp; That said, many of those characters are not forbidden in ArcGIS paths.&amp;nbsp; If you start working with Python's os.path module and using raw strings, you should be fine:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; path &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"C:\tmp\folder with spaces\user.me space"&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; path
&lt;SPAN class="string token"&gt;'C:\\tmp\\folder with spaces\\user.me space'&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Exists&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; res &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CreateFileGDB_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"fgdb"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CreateTable_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;res&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"tbl"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;Result &lt;SPAN class="string token"&gt;'C:\\tmp\\folder with spaces\\user.me space\\fgdb.gdb\\tbl'&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:41:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706471#M54744</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-12T05:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: how can i work around path names in arcpy having spaces in them, if i can?</title>
      <link>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706472#M54745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;we failed to add the multiplatform solution... /&lt;/P&gt;&lt;P&gt;path = "C:/tmp/folder with spaces/user.me space"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2019 17:36:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706472#M54745</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2019-02-08T17:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: how can i work around path names in arcpy having spaces in them, if i can?</title>
      <link>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706473#M54746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have been using double quotes the whole time but I still get an error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;below is an example fo what i'm doing;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy.CopyRows_management(excelscript, r"{}\Testsheet.csv".format(location))&lt;BR /&gt;pfc_temp = r"{}\Testsheet.csv".format(location)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where location is a folder parameter. if I just set location to the folder in question directly it still comes up with the same error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2019 09:04:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706473#M54746</guid>
      <dc:creator>ronancorrigan</dc:creator>
      <dc:date>2019-02-11T09:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: how can i work around path names in arcpy having spaces in them, if i can?</title>
      <link>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706474#M54747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ronan, it isn't just double quotes.&amp;nbsp; It has to be 'raw' string encoded... ie with the &lt;STRONG&gt;'r'&amp;nbsp;&lt;/STRONG&gt;in front.&lt;/P&gt;&lt;P&gt;The big problem right now, I suspect is that the path string gets corrupted from the get-go.&lt;/P&gt;&lt;P&gt;any folder that begins with a variety of characters is going to be messed up unless it is raw encoded.. or avoided by fixing your folders or using Herculean effort to correct them.&lt;/P&gt;&lt;P&gt;Did you read the link in my second post?&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;&lt;A _jive_internal="true" data-containerid="1167" data-containertype="37" data-objectid="55463" data-objecttype="38" href="https://community.esri.com/blogs/dan_patterson/2016/08/14/filenames-and-file-paths-in-python" style="background-color: transparent; background-image: url(&amp;amp;quot; ../images/jive-icon-blog-12x12.png&amp;amp;quot;); background-position-x: 0px; background-position-y: 50%; background-repeat: no-repeat; border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; color: #287433; fill: #287433; font-family: inherit; font-size: 100%; font-style: inherit; font-weight: inherit; outline-color: invert; outline-style: none; outline-width: 0px; text-decoration: none; transition-delay: 0s; transition-duration: 0.1s; transition-property: color; transition-timing-function: linear; vertical-align: baseline; padding: 1px 0px 1px calc(0.35ex + 12px); margin: 0px; border: 0px none currentColor;" target="_blank"&gt;Filenames and file paths in Python&lt;/A&gt;&amp;nbsp;&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; min-height: 8pt; 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;&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;And to show that it works... change your folder for testing and/or to move you along&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;DIV&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;location &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"C:\Junk"&lt;/SPAN&gt;
r&lt;SPAN class="string token"&gt;"{}\Testsheet.csv"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;location&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="string token"&gt;'C:\\Junk\\Testsheet.csv'&lt;/SPAN&gt;

location &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"C:\Junk and space"&lt;/SPAN&gt;
r&lt;SPAN class="string token"&gt;"{}\Testsheet.csv"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;location&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="string token"&gt;'C:\\Junk and space\\Testsheet.csv'&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:41:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706474#M54747</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T05:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: how can i work around path names in arcpy having spaces in them, if i can?</title>
      <link>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706475#M54748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Dan's comments.&amp;nbsp; Additionally, it helps to paste the exact error and traceback.&amp;nbsp; I am also suspect of your location variable, what is stored in it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2019 16:31:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-can-i-work-around-path-names-in-arcpy-having/m-p/706475#M54748</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-02-11T16:31:53Z</dc:date>
    </item>
  </channel>
</rss>

