To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.off-topic.geekOpen lugnet.off-topic.geek in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Off-Topic / Geek / 5088
    perl file copy question —Larry Pieniazek
   I have a need from within a perl module to copy a large (and variable, it's wildcard driven) number of files from one directory to another. TMTOWTDI of course. What's the best way under the following constraints? - the OS is linux - The wildcard (...) (19 years ago, 5-Oct-05, to lugnet.off-topic.geek)
   
        Re: perl file copy question —Ross Crawford
   (...) Try File::NCopy (although I dont think it's a standard module) - (URL) however that you can easily obtain directory and filename from the path string - you don't need the file handle (I'm pretty sure File::Basename is standard): use (...) (19 years ago, 5-Oct-05, to lugnet.off-topic.geek)
   
        Re: perl file copy question —Larry Pieniazek
   (...) that does help! (meanwhile I got a version working that uses system(), just as a stopgap...) However I really don't want to use system() (or any process spawning things) and since I want to wildcard aren't I going to have to use glob() to get (...) (19 years ago, 5-Oct-05, to lugnet.off-topic.geek)
   
        Re: perl file copy question —Timothy Gould
     (...) Does this code help? It shows the outputs. Decided to have a fiddle with what Ross posted to see what everything did. Tim use File::Glob ':glob'; use File::Basename; $ddn="destination directory"; @t=(<g:/docs/in_prog...bes/*.*>); foreach $f (...) (19 years ago, 5-Oct-05, to lugnet.off-topic.geek)
   
        Re: perl file copy question —Ross Crawford
   (...) Yes, it returns a list of filename strings, including any relative path. ROSCO (19 years ago, 5-Oct-05, to lugnet.off-topic.geek)
 

©2005 LUGNET. All rights reserved. - hosted by steinbruch.info GbR