Difference between revisions of "ReNamer:Pascal Script"

From den4b Wiki
Jump to navigation Jump to search
Line 19: Line 19:
  
 
#[[ReNamer:Pascal Script:FileName|How to rename a file (]][[ReNamer:Pascal Script:FileName|using the '''FileName''' variable)]]  
 
#[[ReNamer:Pascal Script:FileName|How to rename a file (]][[ReNamer:Pascal Script:FileName|using the '''FileName''' variable)]]  
#[[ReNamer:Pascal Script:FileName Utilities|How to skip extention (]][[ReNamer:Pascal Script:FileName Utilities|bBasic FileName utilities) ]]  
+
#[[ReNamer:Pascal Script:FileName Utilities|How to skip extention (]][[ReNamer:Pascal Script:FileName Utilities|Basic FileName utilities) ]]  
#[[ReNamer:Pascal Script:WideUpperCase|How to uppercase the filename (]][[ReNamer:Pascal Script:WideUpperCase|the '''WideUpperCase''' function) ]]  
+
#[[ReNamer:Pascal Script:WideUpperCase|How to convert the filename to ALLCAPS (]][[ReNamer:Pascal Script:WideUpperCase|the '''WideUpperCase''' function) ]]  
 
#[[ReNamer:Pascal Script:Unicode String Handling Routines|How to operate on words (]][[ReNamer:Pascal Script:Unicode String Handling Routines|Unicode string-handling routines) ]]  
 
#[[ReNamer:Pascal Script:Unicode String Handling Routines|How to operate on words (]][[ReNamer:Pascal Script:Unicode String Handling Routines|Unicode string-handling routines) ]]  
 
#[[ReNamer:Pascal Script:Basic Conversion Routines|How to serialize files (]][[ReNamer:Pascal Script:Basic Conversion Routines|Basic conversion routines) ]]  
 
#[[ReNamer:Pascal Script:Basic Conversion Routines|How to serialize files (]][[ReNamer:Pascal Script:Basic Conversion Routines|Basic conversion routines) ]]  

Revision as of 11:19, 11 July 2009

This rule uses Delphi/Pascal programming syntax and conventions.

  • Changes to the FileName variable will be treated as changes to the New Name of the File.
  • The FilePath constant holds the original path to the file, and provided for the direct file access.
  • Main code must be within the "begin" and "end." keywords.
  • User defined procedures, functions, variables, constants and types are supported, as well as importing of external functions from DLLs.

All manipulations with the FileName variable should be done using Unicode functions, i.e. WideString type should be used instead of an ordinary String type.

Warning: Do not override registered variables, types and functions. Some of the functions able to alter your file system, so use those with caution!

Reference

In a nutshell

  1. How to rename a file (using the FileName variable)
  2. How to skip extention (Basic FileName utilities) 
  3. How to convert the filename to ALLCAPS (the WideUpperCase function) 
  4. How to operate on words (Unicode string-handling routines) 
  5. How to serialize files (Basic conversion routines) 
  6. How to initialize variables
  7. How to create interactive dialogs (let the user decide)
  8. How to work with folders and paths (FilePath) 
  9. How to break the script execution