Я пытаюсь переместить файлы, которые начинаются с PS-110, в новую созданную мной папку с именем PS-110.
import shutil, glob, os
files_move = []
files_move = [files_move.append(f) for f in glob.glob('PS-110*.pdf')]
destination = r"C:\Users\kjurgens\Downloads\PS-110"
for f in files_move:
shutil.move(f, destination)
При запуске появляется следующая ошибка:
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
File "C:\Users\kjurgens\AppData\Local\Programs\Python\Python38-32\lib\shutil.py", line 771, in move
if _samefile(src, dst):
File "C:\Users\kjurgens\AppData\Local\Programs\Python\Python38-32\lib\shutil.py", line 217, in _samefile
return os.path.samefile(src, dst)
File "C:\Users\kjurgens\AppData\Local\Programs\Python\Python38-32\lib\genericpath.py", line 100, in samefile
s1 = os.stat(f1)
TypeError: stat: path should be string, bytes, os.PathLike or integer, not NoneType
Любой вклад будет принята с благодарностью.