you can use a linux command that creates a directory:
export ATD=`date '+%h-%d-%Y_%H:%M:%S'` && cd /path/to/specified/dir && mkdir $ATD && cd $ATD
it will create a dir (for example) " Nov-14-2012_17: 41: 02 " in the directory dir / path / to / specified / dir and will be connected to it.
after executing this command, you can simply copy the file to a directory.
source
share