<?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: rename path issue [ newbie question] in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916843#M32540</link>
    <description>I would like to append one other point&lt;BR /&gt;&lt;BR /&gt;if I do the following &lt;BR /&gt;&lt;BR /&gt;$rename disk1:[acct1.data]dirTOMOVE.dir - disk1:[ACCT2.data]&lt;BR /&gt;&lt;BR /&gt;won't this entirely solve my problem?&lt;BR /&gt;Basically, it will copy all the contents and sub directories of dirTOMOVE.dir to disk1:[ACCT2.data] &lt;BR /&gt;&lt;BR /&gt;I already have disk1:[ACCT2.data ] setup.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 09 Aug 2005 11:03:27 GMT</pubDate>
    <dc:creator>nipun_2</dc:creator>
    <dc:date>2005-08-09T11:03:27Z</dc:date>
    <item>
      <title>rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916831#M32528</link>
      <description>Hi, &lt;BR /&gt;I am trying to move directory and it's subdirectories and all their contents from &lt;BR /&gt;&lt;BR /&gt;disk1:[acct1.data]dirTOMOVE  to &lt;BR /&gt;disk1:[ACCT2.data]dirTOMOVE &lt;BR /&gt;&lt;BR /&gt;so I did&lt;BR /&gt;$rename disk1:[acct1.data.dirTOMOVE...]*.*;* disk1:[ACCT2.data]*.*;*&lt;BR /&gt;&lt;BR /&gt;However, this copies the subdirectories directly to the data folder &lt;BR /&gt;&lt;BR /&gt;so I have disk1:[ACCT2.data.subdir] instead of disk1:[ACCT2.data.dirTOMOVE.subdir]&lt;BR /&gt;&lt;BR /&gt;Please let me know what you think&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;Nipun</description>
      <pubDate>Mon, 08 Aug 2005 21:22:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916831#M32528</guid>
      <dc:creator>nipun_2</dc:creator>
      <dc:date>2005-08-08T21:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916832#M32529</link>
      <description>Nipun,&lt;BR /&gt;&lt;BR /&gt;  You've got the answer in your description... Try:&lt;BR /&gt;&lt;BR /&gt;$ RENAME/LOG -&lt;BR /&gt;     DISK1:[ACCT1.DATA]DIRTOMOVE.DIR -&lt;BR /&gt;     DISK1:[ACCT2.DATA]DIRTOMOVE.DIR&lt;BR /&gt;&lt;BR /&gt;This will move the directory file (and all its contents). Good policy to use /LOG, especially if you're unsure what's going to happen.&lt;BR /&gt;  Note that if ACCT1 and ACCT2 are owned by different users, you may want to reset the file ownerships as well:&lt;BR /&gt;&lt;BR /&gt;$ SET DIRECTORY/OWNER=acct2 DISK1:[ACCT2.DATA.DIRTOMOVE]&lt;BR /&gt;$ SET FILE/OWNER=acct2 DISK1:[ACCT2.DATA.DIRTOMOVE...]*.*;*&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Aug 2005 22:11:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916832#M32529</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-08-08T22:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916833#M32530</link>
      <description>Just for talking,&lt;BR /&gt;directory in vms are file with .DIR extension.&lt;BR /&gt;Rename can work just on the same disk.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 03:01:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916833#M32530</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-09T03:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916834#M32531</link>
      <description>Nipun,&lt;BR /&gt;&lt;BR /&gt;WADR (with all due respect), I believe that John omitted an important case in his answer.&lt;BR /&gt;&lt;BR /&gt;John discussed the very common case of renaming a directory from one name to another. His answer is completely correct, as is his well noted comment about file ownership. To his comment, I will add a comment about the File Protection Masks and Access Control Lists (ACLS), which also may require adjustment, depending on your security issues.&lt;BR /&gt;&lt;BR /&gt;John's answer, did however, omit the possibility that the RENAME operation was a merge of the files contained in disk1:[acct1.data...] with the contents of the directory tree disk1:[ACCT2.data...].&lt;BR /&gt;&lt;BR /&gt;In that case, your RENAME command should be:&lt;BR /&gt;   $ RENAME/LOG disk1:[acct1.data...]*.*;* disk1:[ACCT2.data...]*.*;*&lt;BR /&gt;&lt;BR /&gt;Two things to note about the above:&lt;BR /&gt;- first, the ellipsis (...) on both source and the destination are critical&lt;BR /&gt;- the /LOG output will not include files (or for that matter, directories) that are included in sub-directories that are moved in total when the sub-directory is renamed.&lt;BR /&gt;&lt;BR /&gt;Note that the use of RENAME only works for the same device, if the devices are different, BACKUP is the preferred utility.&lt;BR /&gt;&lt;BR /&gt;I hope that the above is helpful.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Tue, 09 Aug 2005 03:09:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916834#M32531</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2005-08-09T03:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916835#M32532</link>
      <description>Use Backup - its much smarter at doing this sort of stuff... &lt;BR /&gt;&lt;BR /&gt;Q</description>
      <pubDate>Tue, 09 Aug 2005 04:11:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916835#M32532</guid>
      <dc:creator>Peter Quodling</dc:creator>
      <dc:date>2005-08-09T04:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916836#M32533</link>
      <description>Peter,&lt;BR /&gt;&lt;BR /&gt;Yes, BACKUP is a good option. However, Nipun did not specify the size (or for that matter, the allocations) of the files in the original directory tree. &lt;BR /&gt;&lt;BR /&gt;If the files are large, of they are specially allocated (e.g., contiguous, placement control), or if there is not enough space for two copies of the files on the disk, RENAME is Nipun's best option.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Tue, 09 Aug 2005 05:03:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916836#M32533</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2005-08-09T05:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916837#M32534</link>
      <description>Backup is good solution when you have to move from a disk to another one.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 08:29:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916837#M32534</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-09T08:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916838#M32535</link>
      <description>Thanks for the reply. &lt;BR /&gt;yeah I the files are huge and on the same disk so renaming is the only option I have and I have to be careful. &lt;BR /&gt;&lt;BR /&gt;when I do &lt;BR /&gt;$ RENAME/LOG -&lt;BR /&gt;DISK1:[ACCT1.DATA]DIRTOMOVE.DIR -&lt;BR /&gt;DISK1:[ACCT2.DATA]DIRTOMOVE.DIR&lt;BR /&gt;&lt;BR /&gt;Does this mean I need to have DIRTOMOVE.DIR already created in ACCT2 before hand?&lt;BR /&gt;&lt;BR /&gt;in order to effectively copy all the subdirectories in the right order.</description>
      <pubDate>Tue, 09 Aug 2005 09:54:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916838#M32535</guid>
      <dc:creator>nipun_2</dc:creator>
      <dc:date>2005-08-09T09:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916839#M32536</link>
      <description>Absolutely no,&lt;BR /&gt;ACCT2 can't exist, so can't exit its subdirectory.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 10:08:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916839#M32536</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-09T10:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916840#M32537</link>
      <description>&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt; when I do  $ RENAME/LOG -&lt;BR /&gt;DISK1:[ACCT1.DATA]DIRTOMOVE.DIR -&lt;BR /&gt;DISK1:[ACCT2.DATA]DIRTOMOVE.DIR&lt;BR /&gt;&amp;gt;Does this mean I need to have DIRTOMOVE.DIR &amp;gt;already created in ACCT2 before hand?&lt;BR /&gt;&lt;BR /&gt;Yes.&lt;BR /&gt;&lt;BR /&gt;You will also need to unprotect the directories before delete or rename as by default they are protected against delete.&lt;BR /&gt;Now you are not deleting, only writing, but changing directory entries can 'appear' to look like deleting (both cases can result in 'file not found' :-).&lt;BR /&gt;What I tend to do is a simple, sleazy: SET PROT xxx.DIR.&lt;BR /&gt;This will apply the default file protection which will allow delete.&lt;BR /&gt;You should reset afterwards, but you can not delete non-empty directories anyway.&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 10:14:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916840#M32537</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2005-08-09T10:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916841#M32538</link>
      <description>I have a little confusion here what is the different between&lt;BR /&gt;&lt;BR /&gt;$rename disk1:[acct1.data.dirTOMOVE...]*.*;* disk1:[ACCT2.data.dirTOMOV...]*.*;*&lt;BR /&gt;&lt;BR /&gt;and &lt;BR /&gt;&lt;BR /&gt;$rename disk1:[acct1.data.dirTOMOVE...]*.*;* disk1:[ACCT2.data.dirTOMOV]*.*;*&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Note: I need to move the directory and all it's subdirectories and their contents.  The data is very critical so need to understand clearly what I am doing.&lt;BR /&gt;&lt;BR /&gt;Thanks again&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 10:53:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916841#M32538</guid>
      <dc:creator>nipun_2</dc:creator>
      <dc:date>2005-08-09T10:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916842#M32539</link>
      <description>&lt;QUOTE&gt;&lt;BR /&gt;Does this mean I need to have DIRTOMOVE.DIR already created in ACCT2 before hand?&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;No or Yes?&lt;BR /&gt;Because Hein and me have different point of view I try to explain better.&lt;BR /&gt;[No]&lt;BR /&gt;If ACCT2 doesn't exist, ACCT1 is renamed as is keeping source owner (of ACCT1).&lt;BR /&gt;[Yes]&lt;BR /&gt;If ACCT2 exists (and/or its subdirectory) command can't rename directory (because it alredy exists), send you an error message and keeps taregt owner (of ACCT2).&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 10:54:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916842#M32539</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-09T10:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916843#M32540</link>
      <description>I would like to append one other point&lt;BR /&gt;&lt;BR /&gt;if I do the following &lt;BR /&gt;&lt;BR /&gt;$rename disk1:[acct1.data]dirTOMOVE.dir - disk1:[ACCT2.data]&lt;BR /&gt;&lt;BR /&gt;won't this entirely solve my problem?&lt;BR /&gt;Basically, it will copy all the contents and sub directories of dirTOMOVE.dir to disk1:[ACCT2.data] &lt;BR /&gt;&lt;BR /&gt;I already have disk1:[ACCT2.data ] setup.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 11:03:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916843#M32540</guid>
      <dc:creator>nipun_2</dc:creator>
      <dc:date>2005-08-09T11:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916844#M32541</link>
      <description>Nipun,&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;when I do &lt;BR /&gt;$ RENAME/LOG -&lt;BR /&gt;DISK1:[ACCT1.DATA]DIRTOMOVE.DIR -&lt;BR /&gt;DISK1:[ACCT2.DATA]DIRTOMOVE.DIR&lt;BR /&gt;&lt;BR /&gt;Does this mean I need to have DIRTOMOVE.DIR already created in ACCT2 before hand?&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;To this, Hein answered "Yes"&lt;BR /&gt;&lt;BR /&gt;I am sorry, but have to ABSOLUTELY disagree!!&lt;BR /&gt;&lt;BR /&gt;The (special) file DIRTOMOVE.DIR always has version ;1.&lt;BR /&gt;It has to, if it is be able to functon as a DIRECTORY. &lt;BR /&gt;Now, if it already exists in [acct2.data], the RENAME will already find a ;1 , and generate ;2&lt;BR /&gt;Now there are TWO versions of the .DIR file, and you are in for some nasty surprises!&lt;BR /&gt;Those may be summarised by: YOU DO NOT WANT THIS!!!&lt;BR /&gt;&lt;BR /&gt;So, the answer to the quoted question HAS to be NO, it does NOT have to exist, at should NOT exist!!&lt;BR /&gt;&lt;BR /&gt;And Antonio's "RENAME will give an error" also is INCORRECT! It just creates ;2 &lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 11:19:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916844#M32541</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-08-09T11:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916845#M32542</link>
      <description>Nipun,&lt;BR /&gt;sorry, sorry sorry.&lt;BR /&gt;I wrong :-(&lt;BR /&gt;Don't read my previous posts.&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;$rename disk1:[acct1.data]dirTOMOVE.dir - disk1:[ACCT2.data]&lt;BR /&gt; &lt;BR /&gt;1.Directory [ACCT2.data] has to exist;&lt;BR /&gt;2.After rename all files and subdirectory are moved in new folder&lt;BR /&gt;3.Directory [ACCT1.DATA] stay empty&lt;BR /&gt;4.Directory [ACCT2.DATA] contains all files and directory.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 11:23:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916845#M32542</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-09T11:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916846#M32543</link>
      <description>Nipun,&lt;BR /&gt;&lt;BR /&gt;I believe that Hein mis-spoke (wrote).&lt;BR /&gt;&lt;BR /&gt;Obviously, before doing any of these operations with real files, create a sample directory tree with a population of files and experiment until you are comfortable that you understand what is happening. &lt;BR /&gt;&lt;BR /&gt;It takes only a few seconds to create a group of nested subdirectories a few levels deep, each with some non-directory files. Do the RENAME/LOG operation on this tree and you will see how the mechanics of RENAME operate without working with live data.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Tue, 09 Aug 2005 11:27:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916846#M32543</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2005-08-09T11:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916847#M32544</link>
      <description>Just for talking,&lt;BR /&gt;I never use full path, I usually use path from current directory.&lt;BR /&gt;So I didn't read ACCT1/2 is just a level above the current you want to rename.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 11:27:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916847#M32544</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-09T11:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916848#M32545</link>
      <description>Maybe I am reading this thread incorrectly, but it sounds to me like all Nipun really wants to do is:&lt;BR /&gt;&lt;BR /&gt;$ rename/log disk1:[000000]acct1.dir disk1:[000000]acct2.dir&lt;BR /&gt;&lt;BR /&gt;I prefer to add /log to all my copy/rename/delete commands.</description>
      <pubDate>Tue, 09 Aug 2005 12:09:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916848#M32545</guid>
      <dc:creator>Dale A. Marcy</dc:creator>
      <dc:date>2005-08-09T12:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916849#M32546</link>
      <description>Jan&amp;gt; To this, Hein answered "Yes". I am sorry, but have to ABSOLUTELY disagree!!&lt;BR /&gt;Rob&amp;gt; I believe that Hein mis-spoke (wrote).&lt;BR /&gt;&lt;BR /&gt;You guys are right. I mis-read.&lt;BR /&gt;I _thought_ he had pre-created an empty directory, which would have to be removed.&lt;BR /&gt;My bad.&lt;BR /&gt;&lt;BR /&gt;Dale&amp;gt;  all Nipun really wants to do is:&lt;BR /&gt;&amp;gt; $ rename/log disk1:[000000]acct1.dir disk1:[000000]acct2.dir&lt;BR /&gt;&lt;BR /&gt;Yes, but he is 'nervous' about it.&lt;BR /&gt;&lt;BR /&gt;Nipun&amp;gt; rename disk1:[acct1.data]dirTOMOVE.dir - disk1:[ACCT2.data]&lt;BR /&gt;Nipun&amp;gt; won't this entirely solve my problem?&lt;BR /&gt;&lt;BR /&gt;YES&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Basically, it will copy all the contents and sub directories of dirTOMOVE.dir to disk1:[ACCT2.data] &lt;BR /&gt;&lt;BR /&gt;NO. But this is semantics / nit picking.&lt;BR /&gt;It will NOT copy contents or subdirectories.&lt;BR /&gt;It will only rename that top directoy.&lt;BR /&gt;But that contents and those subdirectories will become visible, will get a path, under that new top just like you desire.&lt;BR /&gt;So the desired effect will be there with a single, reversible, sub-second command.&lt;BR /&gt;&lt;BR /&gt;Sorry 'bout mis-reading earlier.&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 12:55:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916849#M32546</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2005-08-09T12:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: rename path issue [ newbie question]</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916850#M32547</link>
      <description>You can use VTfm from&lt;BR /&gt;&lt;A href="http://www.vtfm.narod.ru" target="_blank"&gt;http://www.vtfm.narod.ru&lt;/A&gt;</description>
      <pubDate>Tue, 09 Aug 2005 13:38:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/rename-path-issue-newbie-question/m-p/4916850#M32547</guid>
      <dc:creator>Vladimir K. Vershinin</dc:creator>
      <dc:date>2005-08-09T13:38:22Z</dc:date>
    </item>
  </channel>
</rss>

