<?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: Import If file exist %if %sysfunc(fileexist in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930121#M365953</link>
    <description>&lt;P&gt;Besides the fact it looks you didn't call the macro to run it, I have one more&lt;STRONG&gt; (rough) remark&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The way you wrote the macro - I consider such type of writing macros a&lt;EM&gt; bad programming practice&lt;/EM&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have macro without parameters which is dependent on some "I-do-not-know-where" defined macrovariables (i.e. &lt;CODE class=" language-sas"&gt;last_business_Day_YYYYMMDD&lt;/CODE&gt;) and in production setup such macro is very poorly reusable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Though my remark may sound harsh, &lt;EM&gt;the remark is given with a good faith and to make your life easier in the future.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;If I were you first of all I would rewrote your code&lt;/STRONG&gt; like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro Import_Leumi_Hanitoy(path_to_file); 

Filename F "&amp;amp;path_to_file.";

%if %sysfunc(fexist(f))%then 
%do;
  DATA Want(where=(cust_type=1 AND ind_pop IN(0,81,83)));
    INFILE F
    firstobs=2;
    INPUT 
    @1  tar 8. 
    @10 bank 2. 
    @13 snif 3. 
    @17 lak_id 9. 
    @27 cust_type 1. 
    @29 heshbon 9. 
    @39 engine_ind 1.
    @41 hamlatza 8. 
    @50 degem_auto $14. 
    @151 degem_snif $14
    @252 lak_0 1.
    @254 ind_pop 2.
    @257 arvut_hadadit 1. 
    @259 ind_car_loan 1. ;
  RUN;
%end;

filename f clear;
%mend Import_Leumi_Hanitoy;


%Import_Leumi_Hanitoy(/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD.)

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to make it:&lt;/P&gt;
&lt;P&gt;1) less error prone (only one place where path to file is provided),&lt;/P&gt;
&lt;P&gt;2) if you decide to change the file location you won't have to rewrite the macro, just a call to it&lt;/P&gt;
&lt;P&gt;3) with that version, your macro will be required to run only with macrovariables provided as paramenters, and not some "unknown-where-defined" macrovariables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All the best&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2024 12:56:36 GMT</pubDate>
    <dc:creator>yabwon</dc:creator>
    <dc:date>2024-05-29T12:56:36Z</dc:date>
    <item>
      <title>Import If file exist %if %sysfunc(fileexist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930106#M365942</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;When I run the following code&amp;nbsp; it create successfully a data set&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA Want(where=(cust_type=1 AND ind_pop IN(0,81,83)));
INFILE "/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD."
firstobs=2;
INPUT 
@1  tar 8. 
@10 bank 2. 
@13 snif 3. 
@17 lak_id 9. 
@27 cust_type 1. 
@29 heshbon 9. 
@39 engine_ind 1.
@41 hamlatza 8. 
@50 degem_auto $14. 
@151 degem_snif $14
@252 lak_0 1.
@254 ind_pop 2.
@257 arvut_hadadit 1. 
@259 ind_car_loan 1. ;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But when I add the condition that check firstly if file exist and import only if file exists then nothing happened and the required data set is not created&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro Import_Leumi_Hanitoy; 
%if %sysfunc(fileexist("/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD."))%then %do;
DATA Want(where=(cust_type=1 AND ind_pop IN(0,81,83)));
INFILE "/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD."
firstobs=2;
INPUT 
@1  tar 8. 
@10 bank 2. 
@13 snif 3. 
@17 lak_id 9. 
@27 cust_type 1. 
@29 heshbon 9. 
@39 engine_ind 1.
@41 hamlatza 8. 
@50 degem_auto $14. 
@151 degem_snif $14
@252 lak_0 1.
@254 ind_pop 2.
@257 arvut_hadadit 1. 
@259 ind_car_loan 1. ;
RUN;
%end;
%mend Import_Leumi_Hanitoy;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here is the Log&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1                                                          The SAS System                              13:33 Wednesday, May 29, 2024

1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='בקרת קיום קבצים יומיים_ובדיקה_ש913_מכיל_0_שורות_C';
4          %LET _CLIENTPROCESSFLOWNAME='Process Flow';
5          %LET _CLIENTPROJECTPATH='';
6          %LET _CLIENTPROJECTPATHHOST='';
7          %LET _CLIENTPROJECTNAME='';
8          %LET _SASPROGRAMFILE='K:\רון_ענת_גיבוי_תוכניות_יומיות\בקרת_קיום_קבצים_יומיים\בקרת קיום קבצים
8        ! יומיים_ובדיקה_ש913_מכיל_0_שורות_C.sas';
9          %LET _SASPROGRAMFILEHOST='VST1H103A2028';
10         
11         ODS _ALL_ CLOSE;
12         OPTIONS DEV=PNG;
13         GOPTIONS XPIXELS=0 YPIXELS=0;
14         FILENAME EGSR TEMP;
15         ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR
16             STYLE=HTMLBlue
17             STYLESHEET=(URL="file:///C:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HTMLBlue.css")
18             NOGTITLE
19             NOGFOOTNOTE
20             GPATH=&amp;amp;sasworklocation
21             ENCODING=UTF8
22             options(rolap="on")
23         ;
NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR
24         
25         GOPTIONS ACCESSIBLE;
26         %macro Import_Leumi_Hanitoy;
27         %if
27       ! %sysfunc(fileexist("/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD."))%then
27       !  %do;
28         DATA Want(where=(cust_type=1 AND ind_pop IN(0,81,83)));
29         INFILE "/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD."
30         firstobs=2;
31         INPUT
32         @1  tar 8.
33         @10 bank 2.
34         @13 snif 3.
35         @17 lak_id 9.
36         @27 cust_type 1.
37         @29 heshbon 9.
38         @39 engine_ind 1.
39         @41 hamlatza 8.
40         @50 degem_auto $14.
41         @151 degem_snif $14
42         @252 lak_0 1.
43         @254 ind_pop 2.
44         @257 arvut_hadadit 1.
45         @259 ind_car_loan 1. ;
46         RUN;
47         %end;
48         %mend Import_Leumi_Hanitoy;
49         
50         
51         GOPTIONS NOACCESSIBLE;
52         %LET _CLIENTTASKLABEL=;
53         %LET _CLIENTPROCESSFLOWNAME=;
54         %LET _CLIENTPROJECTPATH=;
2                                                          The SAS System                              13:33 Wednesday, May 29, 2024

55         %LET _CLIENTPROJECTPATHHOST=;
56         %LET _CLIENTPROJECTNAME=;
57         %LET _SASPROGRAMFILE=;
58         %LET _SASPROGRAMFILEHOST=;
59         
60         ;*';*";*/;quit;run;
61         ODS _ALL_ CLOSE;
62         
63         
64         QUIT; RUN;
65         
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;What is the problem ?&lt;/P&gt;
&lt;P&gt;Why the data set is not created while the file to import exist?&lt;/P&gt;
&lt;P&gt;Please note that macro var&amp;nbsp;&amp;amp;last_business_Day_YYYYMMDD.&amp;nbsp; has value&amp;nbsp; 20240527&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 11:19:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930106#M365942</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2024-05-29T11:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Import If file exist %if %sysfunc(fileexist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930107#M365943</link>
      <description>Are you running %Import_Leumi_Hanitoy?</description>
      <pubDate>Wed, 29 May 2024 11:26:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930107#M365943</guid>
      <dc:creator>rudfaden</dc:creator>
      <dc:date>2024-05-29T11:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Import If file exist %if %sysfunc(fileexist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930108#M365944</link>
      <description>&lt;P&gt;You&amp;nbsp;&lt;STRONG&gt;define&lt;/STRONG&gt; the macro, but you never&amp;nbsp;&lt;STRONG&gt;call&lt;/STRONG&gt; it.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 11:37:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930108#M365944</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-05-29T11:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Import If file exist %if %sysfunc(fileexist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930114#M365947</link>
      <description>I will come back home and check  if I didn't run the macro</description>
      <pubDate>Wed, 29 May 2024 12:26:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930114#M365947</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2024-05-29T12:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Import If file exist %if %sysfunc(fileexist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930116#M365949</link>
      <description>&lt;P&gt;You could also add to the macro, to give you a message in the log if the file doesn't exist, e.g.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if %sysfunc(fileexist("/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD."))%then %do;
  ...
%end;
%else %put NOTE: (USER) the input file /usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD. does not exist, skipping load process. ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 May 2024 12:29:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930116#M365949</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-05-29T12:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Import If file exist %if %sysfunc(fileexist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930121#M365953</link>
      <description>&lt;P&gt;Besides the fact it looks you didn't call the macro to run it, I have one more&lt;STRONG&gt; (rough) remark&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The way you wrote the macro - I consider such type of writing macros a&lt;EM&gt; bad programming practice&lt;/EM&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have macro without parameters which is dependent on some "I-do-not-know-where" defined macrovariables (i.e. &lt;CODE class=" language-sas"&gt;last_business_Day_YYYYMMDD&lt;/CODE&gt;) and in production setup such macro is very poorly reusable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Though my remark may sound harsh, &lt;EM&gt;the remark is given with a good faith and to make your life easier in the future.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;If I were you first of all I would rewrote your code&lt;/STRONG&gt; like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro Import_Leumi_Hanitoy(path_to_file); 

Filename F "&amp;amp;path_to_file.";

%if %sysfunc(fexist(f))%then 
%do;
  DATA Want(where=(cust_type=1 AND ind_pop IN(0,81,83)));
    INFILE F
    firstobs=2;
    INPUT 
    @1  tar 8. 
    @10 bank 2. 
    @13 snif 3. 
    @17 lak_id 9. 
    @27 cust_type 1. 
    @29 heshbon 9. 
    @39 engine_ind 1.
    @41 hamlatza 8. 
    @50 degem_auto $14. 
    @151 degem_snif $14
    @252 lak_0 1.
    @254 ind_pop 2.
    @257 arvut_hadadit 1. 
    @259 ind_car_loan 1. ;
  RUN;
%end;

filename f clear;
%mend Import_Leumi_Hanitoy;


%Import_Leumi_Hanitoy(/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD.)

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to make it:&lt;/P&gt;
&lt;P&gt;1) less error prone (only one place where path to file is provided),&lt;/P&gt;
&lt;P&gt;2) if you decide to change the file location you won't have to rewrite the macro, just a call to it&lt;/P&gt;
&lt;P&gt;3) with that version, your macro will be required to run only with macrovariables provided as paramenters, and not some "unknown-where-defined" macrovariables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All the best&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 12:56:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930121#M365953</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2024-05-29T12:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Import If file exist %if %sysfunc(fileexist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930125#M365954</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159549"&gt;@Ronein&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I will come back home and check if I didn't run the macro&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Just look at the log you posted. No macro call there.&lt;/P&gt;
&lt;PRE class="language-sas"&gt;&lt;CODE&gt;44         @257 arvut_hadadit 1.
45         @259 ind_car_loan 1. ;
46         RUN;
47         %end;
48         %mend Import_Leumi_Hanitoy;
49         
50         
51         GOPTIONS NOACCESSIBLE;
52         %LET _CLIENTTASKLABEL=;
53         %LET _CLIENTPROCESSFLOWNAME=;
54         %LET _CLIENTPROJECTPATH=;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The GOPTIONS is part of the automatic code sent after each submission.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 13:01:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930125#M365954</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-05-29T13:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Import If file exist %if %sysfunc(fileexist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930131#M365955</link>
      <description>&lt;P&gt;Once you define the macro you need to call it.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro Import_Leumi_Hanitoy; 
%if %sysfunc(fileexist("/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD."))%then %do;
DATA Want(where=(cust_type=1 AND ind_pop IN(0,81,83)));
INFILE "/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD."
firstobs=2;
INPUT 
@1  tar 8. 
@10 bank 2. 
@13 snif 3. 
@17 lak_id 9. 
@27 cust_type 1. 
@29 heshbon 9. 
@39 engine_ind 1.
@41 hamlatza 8. 
@50 degem_auto $14. 
@151 degem_snif $14
@252 lak_0 1.
@254 ind_pop 2.
@257 arvut_hadadit 1. 
@259 ind_car_loan 1. 
;
RUN;
%end;
%mend Import_Leumi_Hanitoy;
%Import_Leumi_Hanitoy;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But you do not need to define a macro just to do a simple %IF/%THEN?%DO block anymore.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if %sysfunc(fileexist("/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD."))%then %do;
DATA Want(where=(cust_type=1 AND ind_pop IN(0,81,83)));
INFILE "/usr/local/SAS/MidulOld/score_cs/MF/MF2NT/BLL.B2.IF.RT.HAMLTZOT.A&amp;amp;last_business_Day_YYYYMMDD."
firstobs=2;
INPUT 
@1  tar 8. 
@10 bank 2. 
@13 snif 3. 
@17 lak_id 9. 
@27 cust_type 1. 
@29 heshbon 9. 
@39 engine_ind 1.
@41 hamlatza 8. 
@50 degem_auto $14. 
@151 degem_snif $14
@252 lak_0 1.
@254 ind_pop 2.
@257 arvut_hadadit 1. 
@259 ind_car_loan 1. 
;
RUN;
%end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 13:10:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930131#M365955</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-05-29T13:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Import If file exist %if %sysfunc(fileexist</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930196#M365977</link>
      <description>&lt;P&gt;Make sure fileexist() return 1 :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1717034641514.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96844i46365ED6D6433839/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1717034641514.png" alt="Ksharp_0-1717034641514.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 02:04:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Import-If-file-exist-if-sysfunc-fileexist/m-p/930196#M365977</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-05-30T02:04:11Z</dc:date>
    </item>
  </channel>
</rss>

