___jb_bak___ and ___jb_old___ files in PyCharm(PyCharm 中的 ___jb_bak___ 和 ___jb_old___ 文件)
问题描述
当我从同事那里得到一些 PyCharm 项目时,我看到了一些 *.py 文件的备份文件.
When I got some PyCharm project from my colleague I saw some backup files of *.py files.
这些文件的类型有:*.___jb_old___ 和 *.___jb_bak___.
This files have types: *.___jb_old___ and *.___jb_bak___.
我在 Notepad++ 中打开这些文件,发现这些是对应 *.py 文件的相同备份文件.我问过我的同事,但他不知道这些是什么.
I open the files in Notepad++ and see that these are identical backup files of the corresponding *.py files.
I asked my colleague, but he didn't know what these are.
- 为什么每个 *.py 文件都有两个完全相同的备份文件?
- 如何调整 PyCharm?我们想关闭此备份.
Google 什么也没给我 :(
Google gave me nothing :(
推荐答案
你可以禁用安全写入"
使用安全写入"(首先将更改保存到临时文件)如果这样复选框被选中,更改的文件将首先保存到临时文件;如果保存操作成功完成,则原文件被删除,临时文件被重命名.
Use "safe write" (save changes to a temporary file first) If this check box is selected, a changed file will be first saved to a temporary file; if the save operation is completed successfully, the original file is deleted, and the temporary file is renamed.
https://www.jetbrains.com/webstorm/help/system-settings.html
这篇关于PyCharm 中的 ___jb_bak___ 和 ___jb_old___ 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PyCharm 中的 ___jb_bak___ 和 ___jb_old___ 文件
基础教程推荐
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
