<?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: not reading text file in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/not-reading-text-file/m-p/501285#M475</link>
    <description>&lt;P&gt;Kurt,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks very much, that revised line did the trick.&amp;nbsp; Was really annoying banging my head against the wall trying to figure out what the right solution was without help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Zemaxlight&lt;/P&gt;</description>
    <pubDate>Wed, 03 Oct 2018 21:15:03 GMT</pubDate>
    <dc:creator>zemaxlight</dc:creator>
    <dc:date>2018-10-03T21:15:03Z</dc:date>
    <item>
      <title>not reading text file</title>
      <link>https://communities.sas.com/t5/New-SAS-User/not-reading-text-file/m-p/501160#M454</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to read a simple text file; see below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Toads;
	Infile 'C:\SASUniversityEdition\myfolders\ToadJump.txt' dlm=' ';
	Input Toadname $ Weight Jump1 Jump2 Jump3;
Proc print data=toads;
	Title 'SAS Data Set Toads';
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I get back a message in the error log that it isn't reading the file.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23747iA56084A70C0633CA/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why is the path so different from what I put in?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Zemaxlight&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 14:41:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/not-reading-text-file/m-p/501160#M454</guid>
      <dc:creator>zemaxlight</dc:creator>
      <dc:date>2018-10-03T14:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: not reading text file</title>
      <link>https://communities.sas.com/t5/New-SAS-User/not-reading-text-file/m-p/501164#M457</link>
      <description>&lt;P&gt;SAS University Edition runs on a virtual machine, which is separate to your actual computer.&amp;nbsp; You need to move the file to the shared folder, where this is depends on if your running virtual machine of Amazon:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/software/products/university-edition/faq/SAS_accessdata_Excel.htm" target="_blank"&gt;https://support.sas.com/software/products/university-edition/faq/SAS_accessdata_Excel.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;And shared folder:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/software/products/university-edition/faq/shared_folder_whatis.htm" target="_blank"&gt;https://support.sas.com/software/products/university-edition/faq/shared_folder_whatis.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 14:45:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/not-reading-text-file/m-p/501164#M457</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-10-03T14:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: not reading text file</title>
      <link>https://communities.sas.com/t5/New-SAS-User/not-reading-text-file/m-p/501174#M460</link>
      <description>&lt;P&gt;SAS UE is a virtual machine with a small UNIX operating system. To access files, you need to use UNIX-style syntax, and absolute (starting at the root) pathnames.&lt;/P&gt;
&lt;P&gt;In order to get access to your desktop storage, you defined the shared folder, and this is found in UNIX as /folder/myfolders.&lt;/P&gt;
&lt;P&gt;Your infile statement therefore has to be:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;infile '/folders/myfolders/ToadJump.txt' dlm=' ';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that UNIX filesystems are case-sensitive.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 14:59:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/not-reading-text-file/m-p/501174#M460</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-03T14:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: not reading text file</title>
      <link>https://communities.sas.com/t5/New-SAS-User/not-reading-text-file/m-p/501285#M475</link>
      <description>&lt;P&gt;Kurt,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks very much, that revised line did the trick.&amp;nbsp; Was really annoying banging my head against the wall trying to figure out what the right solution was without help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Zemaxlight&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 21:15:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/not-reading-text-file/m-p/501285#M475</guid>
      <dc:creator>zemaxlight</dc:creator>
      <dc:date>2018-10-03T21:15:03Z</dc:date>
    </item>
  </channel>
</rss>

