当前位置:主页 > 软件编程 > Python代码 >

python创建文件时去掉非法字符的方法

时间:2022-05-02 10:40:33 | 栏目:Python代码 | 点击:

windows系统中文件名不能包含 \ / : * ? " < > |想要创建必须过滤掉这些字符

def setFileTitle(self,title): 
   fileName = re.sub('[\/:*?"<>|]','-',title)#去掉非法字符
   self.file = open(fileName + ".txt","w+")

利用正则去掉非法的字符。

您可能感兴趣的文章:

相关文章