1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PyCharmで.pyファイルが.txtとして読み込まれるバグへの対応

Posted at

PyCharmでファイルの拡張子を正しく認識してくれない場合がある。

例えば、以下のような場合。

引用元:https://chico-shikaku.com/2019/07/pycharm-file-cannnot-recog/

例えば「testRecognize.py」というファイルを作りたかったとします。
しかし間違ってテキストファイルとして「testRecognize」という.pyの拡張子がないファイルを作ってしまうときってありますよね。そういうときに後から「testRecognize」をリネームして「testRecognize.py」としてもPythonファイルとして認識されず、テキストファイルとして認識されてしまうときがあります。

スクリーンショット 2021-11-10 21.16.33.png

環境設定/エディター/ファイルタイプ/python
で必要なファイルの名前を登録してしまう。正規表現も使える。

※検索するとターミナルから環境設定を直接いじっている方もいたが、自分の環境では再現できなかった。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?