<?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: Finding Physical Location  of a File under Users Folder in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810586#M24288</link>
    <description>&lt;P&gt;Please post the complete log of your PROC EXPORT step and the DATA step that sends the mail. Both should be run in immediate succession.&lt;/P&gt;</description>
    <pubDate>Fri, 29 Apr 2022 11:27:47 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2022-04-29T11:27:47Z</dc:date>
    <item>
      <title>Finding Physical Location  of a File under Users Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810558#M24285</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My purpose is to share a SAS output stored as csv/xlsx/txt file under SAS Content folder through e-mail. I'm trying to attach the file by referencing it but since SAS run on Unix/Linux , the path and filename I give does not reflect the true path &amp;amp; filename.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any function or efficient way to obtain name &amp;amp; location of&amp;nbsp;a file locates any of folders under SAS Content?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Eren&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Apr 2022 08:56:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810558#M24285</guid>
      <dc:creator>ern_23</dc:creator>
      <dc:date>2022-04-29T08:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Physical Location  of a File under Users Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810561#M24286</link>
      <description>&lt;P&gt;How do you create the output files? SAS will show the full location in the log, and the code will also have the location present in some form (the location string may be built out of macro variables, so you need the contents of those).&lt;/P&gt;</description>
      <pubDate>Fri, 29 Apr 2022 09:06:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810561#M24286</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-04-29T09:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Physical Location  of a File under Users Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810580#M24287</link>
      <description>I'm using Proc Export to create .csv version of SAS file. Before Proc Export step, I'm specifying file reference by using filename , folderpath and other necessary parameters. I had tried URI path and File Identifier information given in the log (after creation CSV file) , but it did not work out.</description>
      <pubDate>Fri, 29 Apr 2022 11:02:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810580#M24287</guid>
      <dc:creator>ern_23</dc:creator>
      <dc:date>2022-04-29T11:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Physical Location  of a File under Users Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810586#M24288</link>
      <description>&lt;P&gt;Please post the complete log of your PROC EXPORT step and the DATA step that sends the mail. Both should be run in immediate succession.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Apr 2022 11:27:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810586#M24288</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-04-29T11:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Physical Location  of a File under Users Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810621#M24289</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename x '.';
%let path=%sysfunc(pathname(x));

%put &amp;amp;=path. ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Apr 2022 13:11:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810621#M24289</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-04-29T13:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Physical Location  of a File under Users Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810632#M24291</link>
      <description>&lt;P&gt;Hi Kurt_Bremser,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I fixed the problem by changing the folder path to /PUBLIC/ and taking the&amp;nbsp;filename name given in the log.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you !&lt;/P&gt;&lt;P&gt;Eren&lt;/P&gt;</description>
      <pubDate>Fri, 29 Apr 2022 13:32:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/810632#M24291</guid>
      <dc:creator>ern_23</dc:creator>
      <dc:date>2022-04-29T13:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Physical Location  of a File under Users Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/910949#M27828</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I am trying to do the same thing in SAS EG. The log said /sasusera_home/xxx but I don’t have a full path. &lt;BR /&gt;May I ask what you mean by changing it to /public/. I cannot connect sas with c drive either.&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Jan 2024 02:47:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/910949#M27828</guid>
      <dc:creator>tampham92</dc:creator>
      <dc:date>2024-01-09T02:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Physical Location  of a File under Users Folder</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/910974#M27829</link>
      <description>&lt;P&gt;What kind of file do you create?&lt;/P&gt;
&lt;P&gt;Which of the tools provided by EG do you use (code node, export wizard)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post the complete log by copy/pasting it into a window opened with this button:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54552i914D97BE1B0F21E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2024 10:01:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Finding-Physical-Location-of-a-File-under-Users-Folder/m-p/910974#M27829</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-01-09T10:01:42Z</dc:date>
    </item>
  </channel>
</rss>

