Python:获取不适用于文件命名的字符列表?
在Python脚本中,我想知道哪些字符不适用于当前操作系统/文件系统下的文件名。我想创建没有错误的文件。 Python中有这样的功能吗?
In a Python script I want to know which characters are inapplicable for use in file names under current OS/FileSystem. I'd like to create files without errors. Is there such feature in Python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我讨厌用另一个问题回答一个问题,但这个问题似乎就是您正在寻找的问题: 将字符串转换为 Python 中的有效文件名。否则,操作系统保留的字符列表位于此处。
I hate to answer a question with another question, but this question seems to be what you are looking for: turn a string into a valid filename in Python. Otherwise, the list of reserved characters by OS is here.