copying *.txt files recursively

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Laszlo

    copying *.txt files recursively

    Hi

    I need to copy all *.txt files from c:\mutant and its
    subdirectories to c:\out. Could somebody help me with
    an example ?

    Thank you.
  • Jürgen Exner

    #2
    Re: copying *.txt files recursively

    Laszlo wrote:[color=blue]
    > I need to copy all *.txt files from c:\mutant and its
    > subdirectories to c:\out.[/color]

    perldoc File::Find
    perldoc File::Copy

    jue


    Comment

    • Will Stranathan

      #3
      Re: copying *.txt files recursively

      Laszlo wrote:
      [color=blue]
      > Hi
      >
      > I need to copy all *.txt files from c:\mutant and its
      > subdirectories to c:\out. Could somebody help me with
      > an example ?
      >
      > Thank you.[/color]

      `xcopy c:\\mutant\\*.t xt c:\\out\\*.* /s/e/v/y`;

      Comment

      Working...