-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.py
30 lines (24 loc) · 1.2 KB
/
install.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import os
import shutil # шутил, кек))0)
# Определяем список исключаемых файлов и папок
excluded = [".git", ".gitignore", "install.py", "README.md", ".vscode"]
# Определяем папку, в которую будем копировать файлы
destination_folder = os.path.expanduser("~")
# Перебираем все файлы и папки в текущей директории
for entry in os.scandir("."):
# Исключаем файлы и директории, перечисленные в списке excluded
if entry.name in excluded:
print(entry.name, " skipped")
continue
if entry.is_file():
# Копируем файл с заменой
shutil.copy2(entry.path, os.path.join(destination_folder, entry.name))
print(entry.name, " file successfully copied")
elif entry.is_dir():
# Копируем папку со всем ее содержимым с заменой
shutil.copytree(
entry.path, os.path.join(destination_folder, entry.name), dirs_exist_ok=True
)
print(entry.name, " dir successfully copied")
else:
print("WTF maaaan")