Relative Content

Tag Archive for pythonpython-os

WinError 2 The system cannot find the file specified with os library

import os ep = 1 suf = ‘.mp4’ for file in os.listdir(‘\\x.x.x.x\video\Season 2\’): if suf in file: name = f’suits_{ep}{suf}’ os.rename(file, name) ep = ep + 1 File “c:steephVS_CodePythonandjrenamer.py”, line 7, in < module > os.rename(file, name) FileNotFoundError: [WinError 2] The system cannot find the file specified: ‘Suits S02E01.mp4’ -> ‘suits_1.mp4’ python python-os