<?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 how to delete file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-delete-file/m-p/496015#M131060</link>
    <description>&lt;P&gt;i have one rtf file in this location 'D:\newfolder\ex1.rtf' ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how to delete that rtf file by using sas programing?&lt;/P&gt;</description>
    <pubDate>Sun, 16 Sep 2018 08:04:52 GMT</pubDate>
    <dc:creator>thanikondharish</dc:creator>
    <dc:date>2018-09-16T08:04:52Z</dc:date>
    <item>
      <title>how to delete file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-delete-file/m-p/496015#M131060</link>
      <description>&lt;P&gt;i have one rtf file in this location 'D:\newfolder\ex1.rtf' ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how to delete that rtf file by using sas programing?&lt;/P&gt;</description>
      <pubDate>Sun, 16 Sep 2018 08:04:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-delete-file/m-p/496015#M131060</guid>
      <dc:creator>thanikondharish</dc:creator>
      <dc:date>2018-09-16T08:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-delete-file/m-p/496016#M131061</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
	length path $100;
	infile datalines;
	input path;
	datalines;
D:\newfolder\ex1.rtf
;
run;

data _null_;
	set have;	
	fname="temp";
    rc=filename(fname,path);
    if rc = 0 and fexist(fname) then
       rc=fdelete(fname);
    rc=filename(fname);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Sep 2018 08:28:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-delete-file/m-p/496016#M131061</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2018-09-16T08:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-delete-file/m-p/496021#M131065</link>
      <description>&lt;P&gt;A simple google search for "sas delete file" would give you loads of answers. Please do at least a&amp;nbsp;&lt;EM&gt;little&lt;/EM&gt; work yourself, it won't break your fingers or make your head explode. Promise.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Sep 2018 08:37:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-delete-file/m-p/496021#M131065</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-09-16T08:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to delete file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-delete-file/m-p/496039#M131079</link>
      <description>&lt;P&gt;you asked this same question under 2 different subject. &amp;nbsp; Please keep subjects together and mark them as completed when someone answers your question/s.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Sep 2018 14:08:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-delete-file/m-p/496039#M131079</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2018-09-16T14:08:32Z</dc:date>
    </item>
  </channel>
</rss>

