in reply to Files copying from source to dest

I have a few questions:
  1. What output did you expect? What did you actually get?
  2. What error(s) did you see? What message(s) did you get?
  3. What did you expect the call to the multi-device driver to do?

You have not given me enough data to make even and uninformed guess.

----
I Go Back to Sleep, Now.

OGB

Replies are listed 'Best First'.
Re^2: Files copying from source to dest
by Ma (Novice) on Nov 04, 2013 at 19:45 UTC
    I would like the cvs file to be copied to destination But the following error messages are coming when I run the program, the following error messages show up:
    Global symbol "$source" requires explicit package name at tt.txt line +8. Global symbol "$dest" requires explicit package name at tt.txt line 9. Global symbol "$date" requires explicit package name at tt.txt line 14 +. Global symbol "$date" requires explicit package name at tt.txt line 16 +. Execution of tt.txt aborted due to compilation errors.
    One thing I noticed that perl does not accept d:\Perl\Daily path but instead d:/Perl/Daily
      1. unless $source executes before my $source, thus the error
      2. $dest ditto
      3. no my $date anywhere
      4. ditto
        perfect, you have just saved my day. Thank you.