Viktor Kis added the comment:
ran python 3.9.2 on windows 10
1) What did you do?
Tried to remove folder that contains a xml file that was worked on by
ElementTree iterparse with argument source='filename' (string type input)
2. What happened?
python was not able to remove the folder due to file lock still held by
iterparse.
3. What did you expect to happen
iterparse was supposed to close the filehandle such that the user could then
write/move/delete the xml file worked on, however python gave a PermissionError:
Traceback (most recent call last):
File
"C:\Users\vkisf\Desktop\00_MYSTUFF\01_SOFTWARE\01_PYTHON\01_GITHUB\pycascades2021\ETiterparse.py",
line 43, in
shutil.rmtree('subdir2')
File
"C:\Users\vkisf\Desktop\00_MYSTUFF\01_SOFTWARE\01_PYTHON\01_GITHUB\pycascades2021\cpython\lib\shutil.py",
line 740, in rmtree
return _rmtree_unsafe(path, onerror)
File
"C:\Users\vkisf\Desktop\00_MYSTUFF\01_SOFTWARE\01_PYTHON\01_GITHUB\pycascades2021\cpython\lib\shutil.py",
line 618, in _rmtree_unsafe
onerror(os.unlink, fullname, sys.exc_info())
File
"C:\Users\vkisf\Desktop\00_MYSTUFF\01_SOFTWARE\01_PYTHON\01_GITHUB\pycascades2021\cpython\lib\shutil.py",
line 616, in _rmtree_unsafe
os.unlink(fullname)
PermissionError: [WinError 32] The process cannot access the file because it is
being used by another process: 'subdir2\\app.xml'
--
nosy: -anthonypjshaw
___
Python tracker
<https://bugs.python.org/issue43292>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com