<?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: Clear/Delete uploaded files from MyFolder SAS Studio in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884112#M11013</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;OK, your *.xlsx file is in the SAS Content folder and not in the Linux File System.&lt;/P&gt;
&lt;P&gt;A (sub-)folder in the SAS Content folder is a virtual container rather than a representation of a physical file system.&lt;/P&gt;
&lt;P&gt;The SAS Content folder is in fact the SAS Infrastructure Data Server which is based on PostgreSQL (a database).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Therefore you need the:&lt;BR /&gt;FILENAME Statement: FILESRVC Access Method&lt;/P&gt;
&lt;P&gt;to gain access.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The 1st datastep in the below code works for me, but the 2nd one unfortunately not. &lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;BR /&gt;I don't know how to use that FILESRVC Access Method in the FILENAME function.&lt;BR /&gt;I know how to use it in the FILENAME statement, but NOT how to use it in the FILENAME function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;FILENAME abc FILESRVC folderpath='/Users/sbxkok/My Folder/srclib' filename='dummy.sas';

data work.xyz;
 infile abc;
 input column1 $;
 put _infile_;
run;

data _null_;
 rc = filename(fname,"/Users/sbxkok/My Folder/srclib/dummy.sas",'FILESRVC');
 rc = fdelete(fname);
 rc = filename(fname);
run;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I guess someone else will chime in to help us out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;
&lt;DIV id="ConnectiveDocSignExtentionInstalled" data-extension-version="1.0.4"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Sun, 09 Jul 2023 16:30:40 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2023-07-09T16:30:40Z</dc:date>
    <item>
      <title>Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884079#M11007</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using SAS Studio in order to upload an excel file and import it vía SAS code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once the file imported, I would like to delete excel file "xxx.xlsx" from the folder "/Users/%trim(&amp;amp;SYS_COMPUTE_SESSION_OWNER)/My Folder/", because if I want to upload another file with the same name, comes into "xxx (1).xlsx" and my code doesnt work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas to clear the files of myFolder??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jul 2023 11:48:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884079#M11007</guid>
      <dc:creator>lekouna</dc:creator>
      <dc:date>2023-07-09T11:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884081#M11008</link>
      <description>&lt;P&gt;Use the FILENAME and FDELETE functions:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
rc = filename(fref,"/Users/%trim(&amp;amp;SYS_COMPUTE_SESSION_OWNER)/My Folder/xxx.xlsx");
rc = fdelete(fref);
rc = filename(fref);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 09 Jul 2023 12:26:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884081#M11008</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-07-09T12:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884100#M11009</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead of deleting immediately after import ... it's maybe better to delete before next import (?).&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* macro to Delete a File If It Exists */
%macro check(file);
%if %sysfunc(fileexist(&amp;amp;file)) ge 1 %then %do;
   %let rc=%sysfunc(filename(temp,&amp;amp;file));
   %let rc=%sysfunc(fdelete(&amp;amp;temp));
%end; 
%else %put The file &amp;amp;file does not exist;
%mend check; 

%check(/Users/%trim(&amp;amp;SYS_COMPUTE_SESSION_OWNER)/My Folder/xxx.xlsx)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jul 2023 15:14:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884100#M11009</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-07-09T15:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884103#M11010</link>
      <description>It doesn't work.. there is any solutions using %let folder=/Users/%trim(&amp;amp;SYS_COMPUTE_SESSION_OWNER)/My Folder/;&lt;BR /&gt;and %let Fichero=xxx.xlsx; becausa as filename doesn't recognize it.. I don't know why!!</description>
      <pubDate>Sun, 09 Jul 2023 15:36:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884103#M11010</guid>
      <dc:creator>lekouna</dc:creator>
      <dc:date>2023-07-09T15:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884105#M11011</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="lekouna_0-1688917184657.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85679i955BDDF9226B642D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="lekouna_0-1688917184657.png" alt="lekouna_0-1688917184657.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;doesn't work...&amp;nbsp;&lt;/P&gt;&lt;P&gt;using the following it work the import code, but I dont know if there is way to delete the excel file&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let folder=/Users/%trim(&amp;amp;SYS_COMPUTE_SESSION_OWNER)/My Folder/;&lt;/P&gt;&lt;P&gt;%let Fichero=FTF.xlsx;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jul 2023 15:42:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884105#M11011</guid>
      <dc:creator>lekouna</dc:creator>
      <dc:date>2023-07-09T15:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884111#M11012</link>
      <description>&lt;P&gt;Why not just use ~ to indicate your home directory?&lt;/P&gt;
&lt;P&gt;Make a fileref that points to the file and then use that fileref in both the IMPORT and the FDELETE() steps.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let folder=~/My Folder;
%let Fichero=FTF.xlsx;
filename xlsx "&amp;amp;folder/&amp;amp;fichero";
proc import datafile=xlsx dbms=xlsx out=WANT replace ;
run;
%put Return Code = %sysfunc(fdelete(xlsx));
filename xlsx ;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 09 Jul 2023 16:17:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884111#M11012</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-07-09T16:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884112#M11013</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;OK, your *.xlsx file is in the SAS Content folder and not in the Linux File System.&lt;/P&gt;
&lt;P&gt;A (sub-)folder in the SAS Content folder is a virtual container rather than a representation of a physical file system.&lt;/P&gt;
&lt;P&gt;The SAS Content folder is in fact the SAS Infrastructure Data Server which is based on PostgreSQL (a database).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Therefore you need the:&lt;BR /&gt;FILENAME Statement: FILESRVC Access Method&lt;/P&gt;
&lt;P&gt;to gain access.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The 1st datastep in the below code works for me, but the 2nd one unfortunately not. &lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;BR /&gt;I don't know how to use that FILESRVC Access Method in the FILENAME function.&lt;BR /&gt;I know how to use it in the FILENAME statement, but NOT how to use it in the FILENAME function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;FILENAME abc FILESRVC folderpath='/Users/sbxkok/My Folder/srclib' filename='dummy.sas';

data work.xyz;
 infile abc;
 input column1 $;
 put _infile_;
run;

data _null_;
 rc = filename(fname,"/Users/sbxkok/My Folder/srclib/dummy.sas",'FILESRVC');
 rc = fdelete(fname);
 rc = filename(fname);
run;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I guess someone else will chime in to help us out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;
&lt;DIV id="ConnectiveDocSignExtentionInstalled" data-extension-version="1.0.4"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sun, 09 Jul 2023 16:30:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884112#M11013</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-07-09T16:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884113#M11014</link>
      <description>&lt;P&gt;Why make a new fileref if you already had one?&lt;BR /&gt;What happens if you use FDELETE() with ABC?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
 rc = fdelete('abc');
 rc = filename('abc');
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 09 Jul 2023 16:43:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884113#M11014</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-07-09T16:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884114#M11015</link>
      <description>&lt;P&gt;OK &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt; ... that worked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my previous attempt I forgot the quotes around &lt;EM&gt;abc&lt;/EM&gt; in the fdelete and filename functions (data _NULL_ step).&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;80   FILENAME abc FILESRVC folderpath='/Users/sbxkok/My Folder/srclib' filename='dummy.sas';
81   
82   data _null_;
83    rc = fdelete('abc');
84    rc = filename('abc');
85   run;
NOTE: DATA statement used (Total process time):
      real time           0.31 seconds
      cpu time            0.09 seconds&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/353479"&gt;@lekouna&lt;/a&gt; --&amp;gt; you now have a working program!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;
&lt;DIV id="ConnectiveDocSignExtentionInstalled" data-extension-version="1.0.4"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sun, 09 Jul 2023 17:02:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884114#M11015</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-07-09T17:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884118#M11016</link>
      <description>I think that you're right, my *.xlsx file is in the SAS Content folder and not in the Linux File System, that's why the ERROR: Physical file does not exist, /Users/EX392461/My Folder/FTF.xlsx.&lt;BR /&gt;But, since without solution..</description>
      <pubDate>Sun, 09 Jul 2023 17:22:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884118#M11016</guid>
      <dc:creator>lekouna</dc:creator>
      <dc:date>2023-07-09T17:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884119#M11017</link>
      <description>sorry my ignorance, but how could translate it in my case?&lt;BR /&gt;</description>
      <pubDate>Sun, 09 Jul 2023 17:29:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884119#M11017</guid>
      <dc:creator>lekouna</dc:creator>
      <dc:date>2023-07-09T17:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884120#M11018</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* /Users/EX392461/My Folder/FTF.xlsx                     */
/* Take care : folderpath and filename are CASE SENSITIVE */

FILENAME abc FILESRVC folderpath='/Users/EX392461/My Folder' filename='FTF.xlsx';
data _null_;
 rc = fdelete('abc');
 rc = filename('abc');
run;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Koen&lt;/P&gt;
&lt;DIV id="ConnectiveDocSignExtentionInstalled" data-extension-version="1.0.4"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sun, 09 Jul 2023 17:33:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884120#M11018</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-07-09T17:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884121#M11019</link>
      <description>Thanks a lot! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;that´s the way to delete the xlxs from My Folder</description>
      <pubDate>Sun, 09 Jul 2023 17:35:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884121#M11019</guid>
      <dc:creator>lekouna</dc:creator>
      <dc:date>2023-07-09T17:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884122#M11020</link>
      <description>when I try to put %trim(&amp;amp;SYS_COMPUTE_SESSION_OWNER) to EX392461 there is the ERROR ERROR: HTTP error returned from service.&lt;BR /&gt;NOTE: **************** HTTP Request Call ****************&lt;BR /&gt;ERROR: The Folders Service request failed with HTTP status 403: Forbidden.&lt;BR /&gt;NOTE: The requested Service operation cannot be performed with the provided credentials.&lt;BR /&gt;ERROR: An error occurred searching for the specified folder '/Users/%trim(&amp;amp;SYS_COMPUTE_SESSION_OWNER)/My Folder'&lt;BR /&gt;ERROR: Error in the FILENAME statement.&lt;BR /&gt;Do you have any idea of how to apply it for various users??</description>
      <pubDate>Sun, 09 Jul 2023 17:47:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884122#M11020</guid>
      <dc:creator>lekouna</dc:creator>
      <dc:date>2023-07-09T17:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884125#M11021</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you use a macro variable (and you want it resolved by prefixing it with &amp;amp;), you should use double quotes ("...").&lt;BR /&gt;SAS is not looking inside single quotes ('...'). What is inside single quotes is considered a fixed string (not to be altered).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%trim(&amp;amp;SYS_COMPUTE_SESSION_OWNER.) is working for me, but you might need SYSUSERID instead of SYS_COMPUTE_SESSION_OWNER. In many SAS installations, both are the same (but sometimes SYSUSERID equals sassrv).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%PUT &amp;amp;=SYS_COMPUTE_SESSION_OWNER;
%PUT &amp;amp;=SYSUSERID;

FILENAME abc FILESRVC folderpath="/Users/%trim(&amp;amp;SYS_COMPUTE_SESSION_OWNER.)/My Folder/srclib" 
                        filename='dummy.sas';
data _null_;
 rc = fdelete('abc');
 rc = filename('abc');
run;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Koen&lt;/P&gt;
&lt;DIV id="ConnectiveDocSignExtentionInstalled" data-extension-version="1.0.4"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sun, 09 Jul 2023 18:05:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884125#M11021</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-07-09T18:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Clear/Delete uploaded files from MyFolder SAS Studio</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884126#M11022</link>
      <description>Double quotes are work! &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;Thanks a lot!</description>
      <pubDate>Sun, 09 Jul 2023 18:26:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Clear-Delete-uploaded-files-from-MyFolder-SAS-Studio/m-p/884126#M11022</guid>
      <dc:creator>lekouna</dc:creator>
      <dc:date>2023-07-09T18:26:34Z</dc:date>
    </item>
  </channel>
</rss>

