OK, here is a little Perl script to copy podcasts (mp3s and mp4s) from your pc to your memory card to play on your Axim.
First, if you don't already have Perl on your computer, get it, and install it (I am using Activestate Perl:
http://www.activestate.com/products/activeperl/),
download the attached ZIP file, and unzip it on your computer into a directory,
right click on the icon for the file from the ZIP (move_file.pl) and click Send To->Desktop (create shortcut),
right click on the shortcut, and select Properties,
in the Target box enter the following:
C:\Perl\bin\perl.exe C:\perl_scripts\move_file.pl c:\podcasts\podcasts j:\podcast
where
C:\Perl\bin\perl.exe is the installed Perl executable (from "First" above)
C:\perl_scripts\move_file.pl this program
c:\podcasts\podcasts root directory where podcasts are saved
j:\podcast drive where your memory card is located, and directory to save podcasts to
(update paths as needed)
set the Start in: to the directory where you saved the script
in my case C:\perl_scripts
You can also just run this from a command window and use the same information.
If you don't enter the paths the script defaults to the ones I have listed, or you can edit it to use whatever you want.
---If you have questions, please send me an IM.
Although this is my script, I got bits and pieces from a Perl book I have, and from searching on the internet (especially how to use File::Find and File::Copy)
Enjoy:)