编辑文件创建一个新文件

我最近安装了崇高的文本2插件“SFTP”直接与我的ftp服务器文件一起工作。 它正确地连接到我的ftp服务器,但是当我上传/保存文件(为了将编辑保存到原始文件),它不覆盖保存更新的原始文件,而是在我的ftp中创建一个新文件文件夹:如果我编辑“index.php”时,我保存它崇高的文本创建一个新的文件“index.php.1”和原始index.php保持未更新。

我很难说这可能是一个权限问题,但在我的服务器上,所有用户都拥有777个文件夹,文件也获得了777个权限。

这里是我的sftp pluguin配置文件(sftp-config.json):

{
// The tab key will cycle through the settings when first created
// Visit http://wbond.net/sublime_packages/sftp/settings for help

// sftp, ftp or ftps
"type": "ftp",

"save_before_upload": true,
"upload_on_save": true,
"sync_down_on_open": true,
"sync_skip_deletes": false,
"confirm_downloads": false,
"confirm_sync": true,
"confirm_overwrite_newer": false,

"host": "mobility.unixdata.es",
"user": "admin",
"password": "mlcud",
//"port": "22",

"remote_path": "/Escriptori/htdocs/betamobility/testing",
"ignore_regexes": [
    ".sublime-(project|workspace)", "sftp-config(-altd?)?.json",
    "sftp-settings.json", "/venv/", ".svn", ".hg", ".git",
    ".bzr", "_darcs", "CVS", ".DS_Store", "Thumbs.db", "desktop.ini"
],
"file_permissions": "777",
"dir_permissions": "777",

//"extra_list_connections": 0,

"connect_timeout": 30,
//"keepalive": 120,
//"ftp_passive_mode": true,
//"ssh_key_file": "~/.ssh/id_rsa",
//"sftp_flags": ["-F", "/path/to/ssh_config"],

//"preserve_modification_times": false,
//"remote_time_offset_in_hours": 0,
//"remote_encoding": "utf-8",
//"remote_locale": "C",
}

谢谢你的帮助 !!


这很可能是由于FTP服务器的设置。 请参阅https://superuser.com/questions/333022/ftp-upload-overwrite-does-not-overwite-but-creates-file-ext-替代对类似问题的回答。

如果您通过公共网络传输文件,我建议您使用SFTP而不是FTP。

链接地址: http://www.djcxy.com/p/62371.html

上一篇: Editing file creates new one

下一篇: Show file navigation in sidebar