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
More than 3 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