Copying Files In Python is Easy!🐍

Поделиться
HTML-код
  • Опубликовано: 18 ноя 2024

Комментарии • 2

  • @YousefCompSci
    @YousefCompSci  Месяц назад +1

    # copyfile() = copies contents of a file
    # copy() = copyfile() + permission mode + destination can be a directory
    # copy2() = copy() + copies metadata (file’s creation and modification times)
    import shutil
    shutil.copy2("name.txt", "name3.txt") # src, dst

  • @Monsta1291
    @Monsta1291 Месяц назад

    🎉🎉🎉