无法删除 Filezilla 中的 bin 目录
Unable to delete the bin directory in Filezilla
我从今天开始在filezilla中上传我们项目的网站内容,它显示你不能删除这个目录。但事情是昨天我已经正确上传并且网站也可以工作 correctly.From 今天它没有正确显示,如果我试图删除那个 bin 文件夹并上传新的它显示错误 550 权限 Denied.Also我试图将文件权限更改为 777
以删除和重命名此目录中的此 dll 文件但未使用。
这是错误列表:
Directory listing successful
Command: DELE C1.Web.UI.Controls.3.dll
Response: 550 /bin_no/C1.Web.UI.Controls.3.dll: Permission denied.
Command: DELE C1.Web.UI.3.dll
Response: 550 /bin_no/C1.Web.UI.3.dll: Permission denied.
Command: DELE App_Web_u5crbnjm.dll
Response: 550 /bin_no/App_Web_u5crbnjm.dll: Permission denied.
Command: DELE App_Web_qxfqrmxk.dll
Response: 550 /bin_no/App_Web_qxfqrmxk.dll: Permission denied.
Command: DELE App_Web_li5d1wds.dll
Response: 550 /bin_no/App_Web_li5d1wds.dll: Permission denied.
Command: DELE App_Web_e0gqgzvi.dll
Response: 550 /bin_no/App_Web_e0gqgzvi.dll: Permission denied.
Command: DELE App_Web_coj1jirv.dll
Response: 550 /bin_no/App_Web_coj1jirv.dll: Permission denied.
Command: DELE App_Web_00hzknjy.dll
Response: 550 /bin_no/App_Web_00hzknjy.dll: Permission denied.
Command: DELE App_Licenses.dll
Response: 550 /bin_no/App_Licenses.dll: Permission denied.
Command: CWD /
Response: 250 Directory changed to /?
Command: RMD bin_no
Response: 550 /bin_no: Cannot delete directory.**
而且,现在我什至可以上传新的 bin 目录了。
帮我解决一下。
您可能正在访问 Windows 上托管的 FTP 服务器。在 Windows 上,与 Unix 不同,无法删除正在使用的文件。所以如果应用程序 运行 你的网站加载了那些 DLL 文件,你首先需要让它卸载它们。
FileZilla 发出 DELE
,FTP 服务器将其转换为 OS 的某种 unlink
命令。 OS 拒绝删除文件,因为它仍在加载。这不是 FileZilla 的错,也不是 FTP 服务器的错。
我从今天开始在filezilla中上传我们项目的网站内容,它显示你不能删除这个目录。但事情是昨天我已经正确上传并且网站也可以工作 correctly.From 今天它没有正确显示,如果我试图删除那个 bin 文件夹并上传新的它显示错误 550 权限 Denied.Also我试图将文件权限更改为 777
以删除和重命名此目录中的此 dll 文件但未使用。
这是错误列表:
Directory listing successful
Command: DELE C1.Web.UI.Controls.3.dll
Response: 550 /bin_no/C1.Web.UI.Controls.3.dll: Permission denied.
Command: DELE C1.Web.UI.3.dll
Response: 550 /bin_no/C1.Web.UI.3.dll: Permission denied.
Command: DELE App_Web_u5crbnjm.dll
Response: 550 /bin_no/App_Web_u5crbnjm.dll: Permission denied.
Command: DELE App_Web_qxfqrmxk.dll
Response: 550 /bin_no/App_Web_qxfqrmxk.dll: Permission denied.
Command: DELE App_Web_li5d1wds.dll
Response: 550 /bin_no/App_Web_li5d1wds.dll: Permission denied.
Command: DELE App_Web_e0gqgzvi.dll
Response: 550 /bin_no/App_Web_e0gqgzvi.dll: Permission denied.
Command: DELE App_Web_coj1jirv.dll
Response: 550 /bin_no/App_Web_coj1jirv.dll: Permission denied.
Command: DELE App_Web_00hzknjy.dll
Response: 550 /bin_no/App_Web_00hzknjy.dll: Permission denied.
Command: DELE App_Licenses.dll
Response: 550 /bin_no/App_Licenses.dll: Permission denied.
Command: CWD /
Response: 250 Directory changed to /?
Command: RMD bin_no
Response: 550 /bin_no: Cannot delete directory.**
而且,现在我什至可以上传新的 bin 目录了。
帮我解决一下。
您可能正在访问 Windows 上托管的 FTP 服务器。在 Windows 上,与 Unix 不同,无法删除正在使用的文件。所以如果应用程序 运行 你的网站加载了那些 DLL 文件,你首先需要让它卸载它们。
FileZilla 发出 DELE
,FTP 服务器将其转换为 OS 的某种 unlink
命令。 OS 拒绝删除文件,因为它仍在加载。这不是 FileZilla 的错,也不是 FTP 服务器的错。