<?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 Help with 'infile' in SAS university in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262615#M51313</link>
    <description>&lt;P&gt;Hi all!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been trying to open a file for the past hour, and it's driving me crazy. &amp;nbsp;I have a file called 'temp3.txt'&amp;nbsp;with the address&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'C:\SASUniversityEdition\myfolders\temp3.txt'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I tried to use the inline command to open this in SAS UE with the '&lt;STRONG&gt;/folders/myfolders/...&lt;/STRONG&gt;' path:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA temp3;
	infile '/folders/myfolders/temp3.txt';
	input subj 1-4 gender 6 height 8-9 weight 11-13;
RUN;
PROC PRINT data = temp3;
	title 'Output dataset: TEMP3';
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But I when I run this code, I get an error message saying&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;55&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;56 DATA temp3;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;57 infile '/folders/myfolders/temp3.txt';&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;58 input subj 1-4 gender 6 height 8-9 weight 11-13;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;59 RUN;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&lt;FONT color="#FF0000"&gt;ERROR: Physical file does not exist, /folders/myfolders/temp3.txt.&lt;/FONT&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am I doing wrong?&lt;/P&gt;</description>
    <pubDate>Fri, 08 Apr 2016 23:20:58 GMT</pubDate>
    <dc:creator>concernedRock</dc:creator>
    <dc:date>2016-04-08T23:20:58Z</dc:date>
    <item>
      <title>Help with 'infile' in SAS university</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262615#M51313</link>
      <description>&lt;P&gt;Hi all!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been trying to open a file for the past hour, and it's driving me crazy. &amp;nbsp;I have a file called 'temp3.txt'&amp;nbsp;with the address&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'C:\SASUniversityEdition\myfolders\temp3.txt'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I tried to use the inline command to open this in SAS UE with the '&lt;STRONG&gt;/folders/myfolders/...&lt;/STRONG&gt;' path:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA temp3;
	infile '/folders/myfolders/temp3.txt';
	input subj 1-4 gender 6 height 8-9 weight 11-13;
RUN;
PROC PRINT data = temp3;
	title 'Output dataset: TEMP3';
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But I when I run this code, I get an error message saying&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;55&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;56 DATA temp3;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;57 infile '/folders/myfolders/temp3.txt';&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;58 input subj 1-4 gender 6 height 8-9 weight 11-13;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&lt;FONT color="#000000"&gt;59 RUN;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&lt;FONT color="#FF0000"&gt;ERROR: Physical file does not exist, /folders/myfolders/temp3.txt.&lt;/FONT&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What am I doing wrong?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2016 23:20:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262615#M51313</guid>
      <dc:creator>concernedRock</dc:creator>
      <dc:date>2016-04-08T23:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help with 'infile' in SAS university</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262617#M51315</link>
      <description>&lt;P&gt;1. Double check that your myfolders is set up properly. If the following runs correctly it is.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Libname test '/folders/myfolders'&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Apr 2016 23:37:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262617#M51315</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-08T23:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help with 'infile' in SAS university</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262618#M51316</link>
      <description>&lt;P&gt;2. Make sure your file is properly referenced - it is case sensitive.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry about two posts. Slight issue posting&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2016 23:38:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262618#M51316</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-08T23:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Help with 'infile' in SAS university</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262619#M51317</link>
      <description>&lt;P&gt;Thank you for the reply. &amp;nbsp;When I run your code, it does give me an error saying "&lt;SPAN&gt;Libref TEST is not assigned".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, I checked my virtual machine setting:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1) Shared Folders is set to "&lt;STRONG&gt;Enabled&lt;/STRONG&gt;", and&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2)&amp;nbsp;The host path "C:\SASUniversityEdition\myfolders" is added under the name "myfolders" (in "Folder sharing" tab).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Yet it still does not work. &amp;nbsp;Do you think I should just re-install the program?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Apr 2016 00:01:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262619#M51317</guid>
      <dc:creator>concernedRock</dc:creator>
      <dc:date>2016-04-09T00:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help with 'infile' in SAS university</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262621#M51318</link>
      <description>&lt;P&gt;Probably don't need to reinstall. Myfolders is all lower case? Set up in VM?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try restarting VM?&lt;/P&gt;</description>
      <pubDate>Sat, 09 Apr 2016 00:15:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262621#M51318</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-04-09T00:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Help with 'infile' in SAS university</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262622#M51319</link>
      <description>&lt;P&gt;It started working after I restarted the VM twice. &amp;nbsp;Wow, thank you so much! &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Apr 2016 00:24:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Help-with-infile-in-SAS-university/m-p/262622#M51319</guid>
      <dc:creator>concernedRock</dc:creator>
      <dc:date>2016-04-09T00:24:25Z</dc:date>
    </item>
  </channel>
</rss>

