Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Macro name changed from html to html-bobswift during server to cloud migration processing.
Panel
Table of Contents

Anchor
1153835
1153835
Syntax

copydir source-logical-name=file-specification [destination-local-name=file-specification]


Anchor
1153838
1153838
Description

...


Anchor
1153877
1153877
To copy all files in a directory, recursing through all subdirectories:

Panel
Html bobswift
<pre>
copydir local=/mydir/*
</pre>


Anchor
1153880
1153880
To copy all files in a directory (same as above) by specifying the directory name only in the source (no wildcards or filename portion is needed):

Panel
Html bobswift
<pre>
copydir local=/mydir
</pre>


Anchor
1153883
1153883
To copy the files in mydir and all of its subdirectories into another existing directory on the destination side:

Panel
Html bobswift
<pre>
copydir local=/mydir dest=/yourdir
</pre>


Anchor
1153886
1153886
To copy an entire directory structure underneath a subdirectories and any files ending in .txt:

Panel
Html bobswift
<pre>
copydir local=/mydir/*.txt
</pre>

Anchor
1124154
1124154