home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 3 / CD_Magazyn_EXEC_nr_3.iso / Internet / Strony_WWW / Opus4.x / files / PatternOpus.lha / PatternOpus.readme < prev    next >
Text File  |  2000-07-22  |  2KB  |  69 lines

  1. Short:    Rename lots of files to a given pattern
  2. Author:   Korodny@gmx.net (Christoph Gutjahr)
  3. Uploader: Korodny@gmx.net (Christoph Gutjahr)
  4. Version:  1.0
  5. Status:   Freeware
  6. Requires: DirOpus4
  7.  
  8. ----------------
  9. - INTRODUCTION -
  10. ----------------
  11.  
  12.  Pattern.dopus is a collection of three ARexx scripts that rename lots of files
  13.  to a given pattern in one go. You can define a 'name pattern' (i.e.
  14.  "frame?.jpg") and a starting number (i.e. "1").
  15.  
  16.  Output for the above example would be:
  17.  
  18.    frame1.jpg
  19.    frame2.jpg
  20.    frame3.jpg
  21.    .....
  22.  
  23.  There are three scripts: One renames files to a given pattern
  24.  ("Rename2Pattern.dopus"), one moves and renames files to a given pattern
  25.  ("Move2Pattern.dopus", a bit like DOpus' internal function "MoveAs") and one
  26.  copies and renames files to a given pattern ("Copy2Pattern.dopus", like the
  27.  internal function "CopyAs").
  28.  
  29. ----------------
  30. - INSTALLATION -
  31. ----------------
  32.  
  33.  Copy the scripts to any place on your HardDisk ("DOpus:Rexx/" recommended) and
  34.  configure a Menu-item/Button/Hotkey in DirOpus and give it an appropriate
  35.  name. The corresponding action should be configured like this:
  36.  
  37.     AREXX: DOpus:Rexx/<name of the script>
  38.  
  39.  That's all. No flags etc. needed.
  40.  
  41. ---------
  42. - USAGE -
  43. ---------
  44.  
  45.  Select a bunch of files you want to copy/move/rename and start appropriate
  46.  script.
  47.  
  48.  A requester will pop up, asking you for a name pattern. A name pattern MUST
  49.  contain a question mark ("frame?.jpg" is a valid name pattern for example),
  50.  which will later be replaced by numbers to distinguish between files.
  51.  
  52.  If the name pattern contains more than one question mark (i.e. "frame???.jpg),
  53.  the inserted numbers will be 'stretched' to fit the number of question marks
  54.  (i.e. "frame001.jpg" "frame002.jpg" etc.).
  55.  
  56.  A send requester will ask you for the starting number, then the renaming/
  57.  copying/moving will be started.
  58.  
  59. ----------------------------
  60. - Copyright and disclaimer -
  61. ----------------------------
  62.  
  63.  Use this at your own risk. No warranties of any kind are made as to the
  64.  functionality of this program.
  65.  
  66.  This is distributed under the GNU Public license. Do with it whatever you
  67.  want.
  68.  
  69.