This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eryksun
Recipients eryksun, paul.moore, steve.dower, tim.golden, vincent.fung, zach.ware
Date 2022-03-04.02:00:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1646359215.74.0.271191080097.issue46916@roundup.psfhosted.org>
In-reply-to
Content
> FileNotFoundError: [WinError 3] The system cannot find 
> the path specified: 'F:\\ceven\\test2'

The Windows error code, ERROR_PATH_NOT_FOUND (3), indicates that the parent path, r"F:\ceven", does not exist. Try e.mkdir(parents=True) [1].

[1] https://docs.python.org/3/library/pathlib.html#pathlib.Path.mkdir
History
Date User Action Args
2022-03-04 02:00:16eryksunsetrecipients: + eryksun, paul.moore, tim.golden, zach.ware, steve.dower, vincent.fung
2022-03-04 02:00:15eryksunsetmessageid: <1646359215.74.0.271191080097.issue46916@roundup.psfhosted.org>
2022-03-04 02:00:15eryksunlinkissue46916 messages
2022-03-04 02:00:15eryksuncreate