Logo

Programming-Idioms

  • Lisp
  • D
  • Python

Idiom #347 Copy folder

Copy the directory path1 to path2, with all its contents

import shutil
shutil.copytree(path1, path2)
import "os"
err := os.CopyFS(path2, os.DirFS(path1))

1st argument is a string, for the destination folder.
2nd argument is a fs.FS, for the source folder.

New implementation...
< >
programming-idioms.org