pyinstallerで作ったexeファイルでファイル生成するところがセキュリティソフトに引っかかる
下のコードはセキュリティソフトに引っかかる
with open(filename,mode="w") as f:
f.write("")
下はok
f=open(filename,mode="w")
f.write("")
f.close()
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
pyinstallerで作ったexeファイルでファイル生成するところがセキュリティソフトに引っかかる
下のコードはセキュリティソフトに引っかかる
with open(filename,mode="w") as f:
f.write("")
下はok
f=open(filename,mode="w")
f.write("")
f.close()
Register as a new user and use Qiita more conveniently
Go to list of users who liked