Revision [1052]
This is an old revision of CommandXmove made by DavidLee on 2009-11-25 18:18:04.
Command xmove
Name
xmove Moves/renames an xml file to a filename based on an expressionSynopsis
xmove [-x expr] [-d dir] [e extension] [-ns namespace [-ns namespace ...]] [-f] filesOptions
-xpath xpath-expr -x xpath-expr | Evaluate the xpath expression on each file to generate the basename of the new file |
-dir dir -d dir | Specifies a new directory to move the file to |
-ns namespace | Adds namespace declarations. Required if the xpath expression requires namespaces |
-f | Force move (deletes target file if it exists) |
files | List of files to move/rename |
Description
Moves/renames an xml file to a filename based on an expression.For each file given, the xpath-expr is evaluated with the context of the specified file. The result is cast to a string (equivilent to passing the result to the fn:string() function. This because the new basename of the file.
The full target filename is composed of
[dir][basename][extension]
If no [dir] is provided (-d) then the current directory is usedif no [extension] is provided then the extension of the current file is used.
Commands
CategoryCommands