From: Paul <[EMAIL PROTECTED]>
> > system ('copy d:\server\vsiwork\*.tag d:\server\vsiout'); 
> 
> Since you're obviously on a WinDOZE system, though, make sure you
> don't use doublequotes around file paths; "d:\server\vsiwork\*.tag"
> interpolates the backslashes, so you end up with a string that looks
> like d:servervsiwork*.tag

Actually under windoze you might like

        use Win32::FileOp;
        Copy 'd:\server\vsiwork\*.tag', 'd:\server\vsiout\\'
                or print "Failed to copy the files: $^E\n";

With OPTIONAL progress and confirmation dialogs etc.

Jenda
===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz =====
When it comes to wine, women and song, wizards are allowed 
to get drunk and croon as much as they like.
        -- Terry Pratchett in Sourcery


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to