<transferToSymbian>
task is used to transfer a file
from the Symbian device (hardware or emulator) to the PC in the run phase of
TestDriver. If no PC path is specified, the file will be retrieved to the
TestDriver result folder. This has a subtask <transfer>
defined which transfers a file between the PC and the Symbian device. When used
with <retrieveFromSymbian>
task, the wildcards and the
variables are not allowed.
The subtask <transfer>
transfers a file from the PC to
the Symbian device. When used with <transferToSymbian>
then
wildcards and variables are allowed.
This subtask has the following attributes:
SymbianPath
: Path to a file on the Symbian device. This
must be an absolute and a valid path.
PCPath
: Path to the file on the PC. Wildcards and
variables are not allowed when defining the PC path.
move
: When set to true
, files will be moved
completely to the specified path, and when set to false
, files
will be copied in the specified path.
For more information about the wildcards used, seeTestDriver variables and wildcards
<retrieveFromSymbian>
An example xml file to describe a
<retreiveFromSymbian>
task is provided below:
<retrieveFromSymbian>
<transfer move="false" PCPath="${resultroot}\resultChanged.txt" SymbianPath="c:\plattest\result.txt"/>
<transfer move="true" PCPath="${epocroot}\otherResult.txt" SymbianPath="c:\plattest\otherResult.txt"/>
</retrieveFromSymbian>