<?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: Delete  a folder and all files there in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782898#M249587</link>
    <description>&lt;P&gt;If you'd like to do this recursively (ie, to include subdirectories) you can try this macro:&amp;nbsp;&lt;A href="https://core.sasjs.io/mp__deletefolder_8sas.html" target="_blank"&gt;https://core.sasjs.io/mp__deletefolder_8sas.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example usage:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let rootdir=%sysfunc(pathname(work))/demo;
%mf_mkdir(&amp;amp;rootdir)
%mf_mkdir(&amp;amp;rootdir/subdir)
%mf_mkdir(&amp;amp;rootdir/subdir/subsubdir)
data "&amp;amp;rootdir/subdir/example.sas7bdat";
run;

%mp_deletefolder(&amp;amp;rootdir)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 29 Nov 2021 12:35:08 GMT</pubDate>
    <dc:creator>AllanBowe</dc:creator>
    <dc:date>2021-11-29T12:35:08Z</dc:date>
    <item>
      <title>Delete  a folder and all files there</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782139#M249321</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I am trying to delete a folder with all the files that are located there. (SAS data sets/XLSX files/ CSV flies).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
    fname="TYOTA";
    rc=filename(fname, "/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/TYOTA");
    if rc = 0 and fexist(fname) then
       rc=fdelete(fname);
    rc=filename(fname);
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;When I check then I see that nothing happened and the file was not deleted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please see the log&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1                                                          The SAS System                         07:42 Wednesday, November 24, 2021

1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='Program';
4          %LET _CLIENTPROCESSFLOWNAME='Process Flow';
5          %LET _CLIENTPROJECTPATH='';
6          %LET _CLIENTPROJECTPATHHOST='';
7          %LET _CLIENTPROJECTNAME='';
8          %LET _SASPROGRAMFILE='';
9          %LET _SASPROGRAMFILEHOST='';
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         data _null_;
27             fname="TYOTA";
28             rc=filename(fname, "/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/TYOTA");
29             if rc = 0 and fexist(fname) then
30                rc=fdelete(fname);
31             rc=filename(fname);
32         run;

NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      user cpu time       0.00 seconds
      system cpu time     0.00 seconds
      memory              350.53k
      OS Memory           19616.00k
      Timestamp           11/24/2021 08:25:19 AM
      Step Count                        24  Switch Count  0
      Page Faults                       0
      Page Reclaims                     53
      Page Swaps                        0
      Voluntary Context Switches        2
      Involuntary Context Switches      0
      Block Input Operations            0
      Block Output Operations           0
      

33         
34         
35         GOPTIONS NOACCESSIBLE;
36         %LET _CLIENTTASKLABEL=;
37         %LET _CLIENTPROCESSFLOWNAME=;
38         %LET _CLIENTPROJECTPATH=;
39         %LET _CLIENTPROJECTPATHHOST=;
2                                                          The SAS System                         07:42 Wednesday, November 24, 2021

40         %LET _CLIENTPROJECTNAME=;
41         %LET _SASPROGRAMFILE=;
42         %LET _SASPROGRAMFILEHOST=;
43         
44         ;*';*";*/;quit;run;
45         ODS _ALL_ CLOSE;
46         
47         
48         QUIT; RUN;
49         
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Nov 2021 06:26:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782139#M249321</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2021-11-24T06:26:40Z</dc:date>
    </item>
    <item>
      <title>Delete XLSX file  from SAS statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782132#M249331</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I want to delete specific files&amp;nbsp; that are located in specific path .&lt;/P&gt;
&lt;P&gt;Some of the files are SAS data set and other are CSV files or XLSX files.&lt;/P&gt;
&lt;P&gt;When I run this code to delete data set Revenue 2020 then it is working 100% and the data set is deleted.&lt;/P&gt;
&lt;P&gt;When I run this code to delete&amp;nbsp; CSV file called XXX8&amp;nbsp; &amp;nbsp;then it is not working .&lt;/P&gt;
&lt;P&gt;I see in Log a message&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: The file RRR.XXX8 (memtype=DATA) was not found, but appears on a DELETE statement.&lt;/P&gt;
&lt;P&gt;May anyone help please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname RRR "/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/";
proc datasets library=RRR;
delete  Revenue2020;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;/***This code is not working***/&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname RRR "/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/";
proc datasets library=RRR;
delete xxx8;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Nov 2021 05:58:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782132#M249331</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2021-11-24T05:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: Delete XLSX file  from SAS statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782138#M249332</link>
      <description>&lt;P&gt;Use the fdelete() function to delete non-SAS files.&lt;/P&gt;
&lt;P&gt;Or run a system command if you have XCMD enabled and have many files to delete.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 06:24:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782138#M249332</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-11-24T06:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Delete  a folder and all files there</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782144#M249325</link>
      <description>&lt;P&gt;1. why a new thread?&lt;/P&gt;
&lt;P&gt;2. we can't see if the files were deleted from the log&lt;/P&gt;
&lt;P&gt;3. you state you delete CSV and XLS files, but you point to&amp;nbsp;/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/TYOTA&amp;nbsp; which is neither&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 07:08:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782144#M249325</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-11-24T07:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Delete XLSX file  from SAS statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782146#M249333</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;Is it necessary to add the file extension to file name?&lt;/P&gt;
&lt;P&gt;I run the following code and the file was not deleted&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
rc = filename('peletNewNew', "/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/peletNewNew");
put 'peletNewNew' rc=;
if rc = 0 and fexist('peletNewNew') then do;
rc=fdelete('peletNewNew');
put 'peletNewNew ' rc=;
end;
rc=filename('peletNewNew');
put rc=;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The Log show the following&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1                                                          The SAS System                         07:42 Wednesday, November 24, 2021

1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='Program';
4          %LET _CLIENTPROCESSFLOWNAME='Process Flow';
5          %LET _CLIENTPROJECTPATH='';
6          %LET _CLIENTPROJECTPATHHOST='';
7          %LET _CLIENTPROJECTNAME='';
8          %LET _SASPROGRAMFILE='';
9          %LET _SASPROGRAMFILEHOST='';
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         data _null_;
27         rc = filename('peletNewNew', "/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/peletNewNew");
28         put 'peletNewNew' rc=;
29         if rc = 0 and fexist('peletNewNew') then do;
30         rc=fdelete('peletNewNew');
31         put 'peletNewNew ' rc=;
32         end;
33         rc=filename('peletNewNew');
34         put rc=;
35         run;

peletNewNewrc=20014
rc=20014
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      user cpu time       0.01 seconds
      system cpu time     0.00 seconds
      memory              350.53k
      OS Memory           19616.00k
      Timestamp           11/24/2021 09:36:44 AM
      Step Count                        26  Switch Count  0
      Page Faults                       0
      Page Reclaims                     53
      Page Swaps                        0
      Voluntary Context Switches        4
      Involuntary Context Switches      0
      Block Input Operations            0
      Block Output Operations           0
      

36         
37         GOPTIONS NOACCESSIBLE;
2                                                          The SAS System                         07:42 Wednesday, November 24, 2021

38         %LET _CLIENTTASKLABEL=;
39         %LET _CLIENTPROCESSFLOWNAME=;
40         %LET _CLIENTPROJECTPATH=;
41         %LET _CLIENTPROJECTPATHHOST=;
42         %LET _CLIENTPROJECTNAME=;
43         %LET _SASPROGRAMFILE=;
44         %LET _SASPROGRAMFILEHOST=;
45         
46         ;*';*";*/;quit;run;
47         ODS _ALL_ CLOSE;
48         
49         
50         QUIT; RUN;
51         
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 07:37:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782146#M249333</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2021-11-24T07:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Delete XLSX file  from SAS statement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782148#M249334</link>
      <description>&lt;P&gt;Yes the filename must match exactly, but why didn't you just try it?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 07:55:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782148#M249334</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-11-24T07:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: Delete  a folder and all files there</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782161#M249335</link>
      <description>&lt;UL&gt;
&lt;LI&gt;I merged the two threads dealing with basically the same issue&lt;/LI&gt;
&lt;LI&gt;You cannot remove a non-empty directory with the FDELETE function&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;So you either have to use an external command (&lt;U&gt;&lt;STRONG&gt;STRONGLY&lt;/STRONG&gt;&lt;/U&gt; recommended), or iterate recursively through all subdirectories, to clean up all the "leaves" before removing a "branch".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;has posted (multiple times) a data step that uses MODIFY to place a directory tree recursively in a dataset; from such a dataset, you can start to first remove the entries with the most separators, down to that with the least, which will be the root of the tree you want to remove.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On a UNIX system, the external command is&lt;/P&gt;
&lt;PRE&gt;rm -rf directory&lt;/PRE&gt;
&lt;P&gt;so you can see that not using that and instead coding something like hundred lines is utter stupidity at best. Maxim 14 at work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 08:34:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782161#M249335</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-11-24T08:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: Delete  a folder and all files there</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782206#M249366</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;I am trying to run the code but I think that I didn't write it correctly.&lt;/P&gt;
&lt;P&gt;May you please help?&lt;/P&gt;
&lt;P&gt;The Folder is called TYOTA&lt;/P&gt;
&lt;P&gt;The path where the folder is located is&amp;nbsp; &amp;nbsp;"/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/TYOTA"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I run this code and get errors&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let path = %nrstr("/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/TYOTA");
options noxwait ;
x "rmdir "/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/" /s /q";
options xwait;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Nov 2021 12:33:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782206#M249366</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2021-11-24T12:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Delete  a folder and all files there</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782210#M249370</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Firstly delete all the files under a fold*/
data have;
rc=filename('xx','/data/sas_data/work/');
did=dopen('xx');
do i=1 to dnum(did);
 fname=dread(did,i);
 output;
end;
rc=dclose(did);
run;
%macro dfile(fname=);
data _null_;
rc=filename('temp',"/data/sas_data/work/&amp;amp;fname");
if rc=0 and fexist('temp') then rc=fdelete('temp');
rc=filename('temp');
put _all_;
run;
%mend;
data _null_;
 set have;
 call execute(cats('%dfile(fname=',fname,')'));
run;








/*Secondly, delete this empty fold*/
%macro dir(fname=);
filename x "/data/sas_data/work/&amp;amp;fname";
data _null_;
 rc=fdelete('x');
 put rc=;
 msg=sysmsg();
 put msg=;
run;
%mend;
data _null_;
 set have;
 call execute(cats('%dir(fname=',fname,')'));
run;



&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Nov 2021 12:42:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782210#M249370</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-24T12:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Delete  a folder and all files there</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782214#M249372</link>
      <description>&lt;P&gt;You are the best!&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;I have run it and it worked 100%&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Step1-Firstly delete all the files under a fold TYOTA*/
/*Step1-Firstly delete all the files under a fold TYOTA*/
/*Step1-Firstly delete all the files under a fold TYOTA*/
/***Here can see all file names in this folder TYOTA***/
data have;
rc=filename('xx',"/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/TYOTA");
did=dopen('xx');
do i=1 to dnum(did);
 fname=dread(did,i);
 output;
end;
rc=dclose(did);
run;
/***Macro to delete a file located in Folder TYOTA**/
%macro dfile(fname=);
data _null_;
rc=filename('temp',"/usr/local/SAS/SASUsers/LabRet/UserDir/RRR/TYOTA/&amp;amp;fname");
if rc=0 and fexist('temp') then rc=fdelete('temp');
rc=filename('temp');
put _all_;
run;
%mend;
/***Now delete all files that their names are in data set have that we created before***/
data _null_;
 set have;
 call execute(cats('%dfile(fname=',fname,')'));
run;
/*Step2-Deleteelete this empty fold*/
/*Step2-Deleteelete this empty fold*/
/*Step2-Deleteelete this empty fold*/
%macro dir(fname=);
filename x "/usr/local/SAS/SASUsers/LabRet/UserDir/udclk79/TYOTA/&amp;amp;fname";
data _null_;
 rc=fdelete('x');
 put rc=;
 msg=sysmsg();
 put msg=;
run;
%mend;
data _null_;
 set have;
 call execute(cats('%dir(fname=',fname,')'));
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Nov 2021 12:59:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782214#M249372</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2021-11-24T12:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Delete  a folder and all files there</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782898#M249587</link>
      <description>&lt;P&gt;If you'd like to do this recursively (ie, to include subdirectories) you can try this macro:&amp;nbsp;&lt;A href="https://core.sasjs.io/mp__deletefolder_8sas.html" target="_blank"&gt;https://core.sasjs.io/mp__deletefolder_8sas.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example usage:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let rootdir=%sysfunc(pathname(work))/demo;
%mf_mkdir(&amp;amp;rootdir)
%mf_mkdir(&amp;amp;rootdir/subdir)
%mf_mkdir(&amp;amp;rootdir/subdir/subsubdir)
data "&amp;amp;rootdir/subdir/example.sas7bdat";
run;

%mp_deletefolder(&amp;amp;rootdir)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 29 Nov 2021 12:35:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Delete-a-folder-and-all-files-there/m-p/782898#M249587</guid>
      <dc:creator>AllanBowe</dc:creator>
      <dc:date>2021-11-29T12:35:08Z</dc:date>
    </item>
  </channel>
</rss>

