There are several problems here, firstly you can't access a PDA from the windows commandline (this includes the batch interpreter), second the folder synchronization included with ActiveSync cannot be used from commandline either, and thirdly, using an FTP server on your Axim is too complicated and expensive for such a simple task.
What you are looking for is something similar to Microsofts' CECopy command which is included in the Windows Mobile Developer Power Toys package which allows commandline copying over an ActiveSync connection (cabled or wireless). Personally I think you would be better off with the
RCMD utility by
hfrmobile as it contains the most common file commands (dir, del, copy, md, rd etc) in one executable that is ideal for batching.
It is fairly simple to use for example:
|
Code:
|
rcmd copy "E:\test\*.*" "\Storage Card\\" |
Would copy all the files in E:\test to the root of your SD card, note that the double slash is necessary when using a quoted destination directory.
Hope this helps