<?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: Renaming a folder in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613897#M179373</link>
    <description>I ran the code you supplied but I got an error. This is the log.&lt;BR /&gt;&lt;BR /&gt;OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;&lt;BR /&gt;72&lt;BR /&gt;&lt;BR /&gt;73&lt;BR /&gt;&lt;BR /&gt;74 data have;&lt;BR /&gt;&lt;BR /&gt;75 input Flag;&lt;BR /&gt;&lt;BR /&gt;76 cards;&lt;BR /&gt;&lt;BR /&gt;NOTE: The data set WORK.HAVE has 3 observations and 1 variables.&lt;BR /&gt;&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;80 ;&lt;BR /&gt;&lt;BR /&gt;81&lt;BR /&gt;&lt;BR /&gt;82 data folders;&lt;BR /&gt;&lt;BR /&gt;83 rc=filename('x','c:\bootout');&lt;BR /&gt;&lt;BR /&gt;84 did=dopen('x');&lt;BR /&gt;&lt;BR /&gt;85 do i=1 to dnum(did);&lt;BR /&gt;&lt;BR /&gt;86 folder=dread(did,i);&lt;BR /&gt;&lt;BR /&gt;87 output;&lt;BR /&gt;&lt;BR /&gt;88 end;&lt;BR /&gt;&lt;BR /&gt;89 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: Argument 1 to function DNUM(0) at line 85 column 12 is invalid.&lt;BR /&gt;&lt;BR /&gt;ERROR: Invalid DO loop control information, either the INITIAL or TO&lt;BR /&gt;expression is missing or the BY expression is missing, zero,&lt;BR /&gt;&lt;BR /&gt;or invalid.&lt;BR /&gt;&lt;BR /&gt;rc=0 did=0 i=1 folder= _ERROR_=1 _N_=1&lt;BR /&gt;&lt;BR /&gt;NOTE: Mathematical operations could not be performed at the following&lt;BR /&gt;places. The results of the operations have been set to&lt;BR /&gt;&lt;BR /&gt;missing values.&lt;BR /&gt;&lt;BR /&gt;Each place is given by: (Number of times) at (Line):(Column).&lt;BR /&gt;&lt;BR /&gt;1 at 85:12&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;&lt;BR /&gt;WARNING: The data set WORK.FOLDERS may be incomplete. When this step was&lt;BR /&gt;stopped there were 0 observations and 4 variables.&lt;BR /&gt;&lt;BR /&gt;WARNING: Data set WORK.FOLDERS was not replaced because this step was&lt;BR /&gt;stopped.&lt;BR /&gt;&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 26 Dec 2019 13:07:49 GMT</pubDate>
    <dc:creator>jacksonan123</dc:creator>
    <dc:date>2019-12-26T13:07:49Z</dc:date>
    <item>
      <title>Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613612#M179226</link>
      <description>&lt;P&gt;I have a file Nflag which looks like this.&lt;/P&gt;&lt;P&gt;Flag&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;I also have a group of folders named:&lt;/P&gt;&lt;P&gt;Test1.nm7&lt;/P&gt;&lt;P&gt;Test2.nm7&lt;/P&gt;&lt;P&gt;Test3.nm7&lt;/P&gt;&lt;P&gt;Test4.nm7&lt;/P&gt;&lt;P&gt;Test5.nm7&lt;/P&gt;&lt;P&gt;What I would like to do is to have the folder names reflect the flag values so that those with a 0 (e.g.,0Test1.nm7)&amp;nbsp; designation can be later deleted.&amp;nbsp; What I would have initially would be:&lt;/P&gt;&lt;P&gt;0Test1.nm7&lt;BR /&gt;1Test2.nm7&lt;BR /&gt;0Test3.nm7&lt;BR /&gt;1Test4.nm7&lt;BR /&gt;1Test5.nm7&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The final&amp;nbsp; folders would be:&lt;/P&gt;&lt;P&gt;1Test2.nm7&lt;BR /&gt;1Test4.nm7&lt;BR /&gt;1Test5.nm7&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone tell me how best to do this?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2019 19:40:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613612#M179226</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-23T19:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613626#M179231</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure exactly what your trying to achieve here. Do you want to modify the values in your dataset or you really want to rename the folders?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Dec 2019 20:39:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613626#M179231</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2019-12-23T20:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613716#M179274</link>
      <description>&lt;P&gt;Create a BAT file(Windows OS) by sas. like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data _null_;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;set have;&lt;/P&gt;
&lt;P&gt;file 'c:\temp\rename.bat';&lt;/P&gt;
&lt;P&gt;x=' rename&amp;nbsp; &lt;SPAN&gt;Test1.nm7&amp;nbsp; 0Test1.nm7&amp;nbsp;&lt;/SPAN&gt;';&amp;nbsp; /*&amp;lt;-- Change it based on HAVE dataset*/&lt;/P&gt;
&lt;P&gt;put x;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And execute c:\temp\rename.bat under Command Line (Start--&amp;gt; Run --&amp;gt; cmd&amp;nbsp; )&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2019 11:35:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613716#M179274</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-12-24T11:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613828#M179331</link>
      <description>I understand the concept of the batch file but I am unsure how it is&lt;BR /&gt;supposed to work.&lt;BR /&gt;&lt;BR /&gt;Let me explain again. I have two folders one Nflag which has the variable&lt;BR /&gt;flag.&lt;BR /&gt;&lt;BR /&gt;Flag&lt;BR /&gt;&lt;BR /&gt;0&lt;BR /&gt;&lt;BR /&gt;1&lt;BR /&gt;&lt;BR /&gt;0&lt;BR /&gt;&lt;BR /&gt;A second folder bootstrap contains folders named :&lt;BR /&gt;&lt;BR /&gt;Test1.nm7&lt;BR /&gt;&lt;BR /&gt;Test2.nm7&lt;BR /&gt;&lt;BR /&gt;Test3.nm7&lt;BR /&gt;&lt;BR /&gt;In your batch file let's assume that my bootstrap is named have. We&lt;BR /&gt;activate the bat file.&lt;BR /&gt;&lt;BR /&gt;My question is when do we bring in Nflag which contains the values to be&lt;BR /&gt;concatenated 1 to 1 with Test1.nm7 .. Can you tell me how that file enters&lt;BR /&gt;into your solution?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Dec 2019 15:24:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613828#M179331</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-25T15:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613865#M179353</link>
      <description>Like this? &lt;BR /&gt;&lt;BR /&gt;data _null_;&lt;BR /&gt; set HAVE;&lt;BR /&gt; CMD=catt('rename "', FNAME, '" "', FLAG, NAME, '"');&lt;BR /&gt; putlog CMD;&lt;BR /&gt; * call system(CMD);&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;Uncomment the last line when the code shown in the log is satisfactory.</description>
      <pubDate>Thu, 26 Dec 2019 09:05:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613865#M179353</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-12-26T09:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613888#M179366</link>
      <description>&lt;P&gt;OK. assuming you have a folder named&amp;nbsp;c:\bootstrap ,&lt;/P&gt;
&lt;P&gt;under it there are three sub-folders named :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;Test1.nm7&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Test2.nm7&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Test3.nm7&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Firstly , make a table contains 0 and 1.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Flag;
cards;
0
1
0
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;Secondly, get the sub-folders name :&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data folders;
 rc=filename('x','c:\bootstrap');
 did=dopen('x');
 do i=1 to dnum(did);
  folder=dread(did,i);
  output;
 end;
 run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;Lastly ,make a BAT file if you could and execute&amp;nbsp; BAT file.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Here is c:\temp\rename.bat .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Enter command line and type " c:\temp\rename.bat" to execute it .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
 filename x 'c:\temp\rename.bat';
 data _null_;
 merge have folders;
 rename=catx(' ','rename',folder,cats(flag,folder));
 file x;
 if _n_=1 then put 'cd c:\bootstrap';
 put rename;
 run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Dec 2019 12:08:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613888#M179366</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-12-26T12:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613897#M179373</link>
      <description>I ran the code you supplied but I got an error. This is the log.&lt;BR /&gt;&lt;BR /&gt;OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;&lt;BR /&gt;72&lt;BR /&gt;&lt;BR /&gt;73&lt;BR /&gt;&lt;BR /&gt;74 data have;&lt;BR /&gt;&lt;BR /&gt;75 input Flag;&lt;BR /&gt;&lt;BR /&gt;76 cards;&lt;BR /&gt;&lt;BR /&gt;NOTE: The data set WORK.HAVE has 3 observations and 1 variables.&lt;BR /&gt;&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;cpu time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;80 ;&lt;BR /&gt;&lt;BR /&gt;81&lt;BR /&gt;&lt;BR /&gt;82 data folders;&lt;BR /&gt;&lt;BR /&gt;83 rc=filename('x','c:\bootout');&lt;BR /&gt;&lt;BR /&gt;84 did=dopen('x');&lt;BR /&gt;&lt;BR /&gt;85 do i=1 to dnum(did);&lt;BR /&gt;&lt;BR /&gt;86 folder=dread(did,i);&lt;BR /&gt;&lt;BR /&gt;87 output;&lt;BR /&gt;&lt;BR /&gt;88 end;&lt;BR /&gt;&lt;BR /&gt;89 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: Argument 1 to function DNUM(0) at line 85 column 12 is invalid.&lt;BR /&gt;&lt;BR /&gt;ERROR: Invalid DO loop control information, either the INITIAL or TO&lt;BR /&gt;expression is missing or the BY expression is missing, zero,&lt;BR /&gt;&lt;BR /&gt;or invalid.&lt;BR /&gt;&lt;BR /&gt;rc=0 did=0 i=1 folder= _ERROR_=1 _N_=1&lt;BR /&gt;&lt;BR /&gt;NOTE: Mathematical operations could not be performed at the following&lt;BR /&gt;places. The results of the operations have been set to&lt;BR /&gt;&lt;BR /&gt;missing values.&lt;BR /&gt;&lt;BR /&gt;Each place is given by: (Number of times) at (Line):(Column).&lt;BR /&gt;&lt;BR /&gt;1 at 85:12&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;&lt;BR /&gt;WARNING: The data set WORK.FOLDERS may be incomplete. When this step was&lt;BR /&gt;stopped there were 0 observations and 4 variables.&lt;BR /&gt;&lt;BR /&gt;WARNING: Data set WORK.FOLDERS was not replaced because this step was&lt;BR /&gt;stopped.&lt;BR /&gt;&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;&lt;BR /&gt;cpu time 0.00 seconds&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Dec 2019 13:07:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613897#M179373</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-26T13:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613898#M179374</link>
      <description>I ran your code and it ran okay. Not stated but I guess this should be run&lt;BR /&gt;from a DOS window under a *.bat file. My question is where is the Flag data&lt;BR /&gt;concatenated with the&lt;BR /&gt;&lt;BR /&gt;Test1.nm7, Test2.nm7, Test3.nm7 which are represented by FNAME and NAME, how&lt;BR /&gt;is that input into the code?&lt;BR /&gt;&lt;BR /&gt;I ask because I will actually have 1000 of the Testi.nm7 files to rename.&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Dec 2019 13:23:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/613898#M179374</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-26T13:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/614050#M179436</link>
      <description>&lt;P&gt;Did you create a folder named "bootout" under C:\ ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;c:\bootout is refer to a directory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and under it ,create many sub-directory like &lt;SPAN&gt;Test1.nm7&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;c:\bootout\&lt;SPAN&gt;Test1.nm7&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;c:\bootout\&lt;SPAN&gt;Test2.nm7&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;.........&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2019 12:11:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/614050#M179436</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-12-27T12:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/614225#M179487</link>
      <description>&lt;P&gt;This solution worked.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2019 20:10:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/614225#M179487</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-28T20:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/614384#M179577</link>
      <description>I ran the batch file from a folder temp with a command prompt with the&lt;BR /&gt;command c:\temp\rename.bat, I get several messages.&lt;BR /&gt;&lt;BR /&gt;They are( filename is not recognized as an internal or external command,&lt;BR /&gt;operable program or batch file). I get the same for data null , and merge.&lt;BR /&gt;&lt;BR /&gt;For rename=catx(' ','rename',folder.cats(flag,folder)); I get the syntax of&lt;BR /&gt;the command is incorrect.&lt;BR /&gt;&lt;BR /&gt;It worked but this time, I must have done something wrong. I have folder&lt;BR /&gt;bootstrap with the test*.nm7 folders and a folder bootout. Where should it&lt;BR /&gt;be located?&lt;BR /&gt;&lt;BR /&gt;Rename.bat&lt;BR /&gt;&lt;BR /&gt;Filename x 'c:\temp\rename.bat';&lt;BR /&gt;&lt;BR /&gt;Data _null_;&lt;BR /&gt;&lt;BR /&gt;Merge have folders;&lt;BR /&gt;&lt;BR /&gt;rename=catx(' ','rename',folder.cats(flag,folder));&lt;BR /&gt;&lt;BR /&gt;File x;&lt;BR /&gt;&lt;BR /&gt;If _n_ then put 'cd:\bootstrap';put rename;run;&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Dec 2019 13:29:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/614384#M179577</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-30T13:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/614539#M179672</link>
      <description>&lt;P&gt;Can you post your ERROR information?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did your directory name contains some special character like blank ? if it was ,you need quote around it to rename.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;rename "1Test2 nm7" 1Test2.nm7&lt;/P&gt;</description>
      <pubDate>Tue, 31 Dec 2019 11:14:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/614539#M179672</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-12-31T11:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming a folder</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/614540#M179673</link>
      <description>Thanks for responding, that was the issue and all is well.&lt;BR /&gt;&lt;BR /&gt;Happy New Year.&lt;BR /&gt;</description>
      <pubDate>Tue, 31 Dec 2019 11:59:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Renaming-a-folder/m-p/614540#M179673</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2019-12-31T11:59:49Z</dc:date>
    </item>
  </channel>
</rss>

