我在FileZilla中错误地将文件夹拖放到另一个文件夹中。
~/big_folder
~/some_other_folder
被移动的文件夹非常大。它包含数十万个文件(node_modules,小的图像文件,很多文件夹)
奇怪的是,释放鼠标后,移动完成了。文件夹“ big_folder”被移至“ some_other_folder”。
~/some_other_folder/big_folder
(没有big_folder
在~/
移动之后)
然后我意识到了这个错误,然后尝试移回去,但是在FileZilla和终端上都失败了。
然后,我必须cp -r
将文件复制回去,因为有服务器端代码可以访问这些文件~/big_folder
它需要永远的等待...
我该怎么办?
顺便说一句,这是FileZilla的输出(这是后退的失败):
Status: Renaming '/root/big_folder' to '/root/some_other_folder/big_folder'
Status: /root/big_folder -> /root/some_other_folder/big_folder
Status: Renaming '/root/some_other_folder/big_folder' to '/root/big_folder'
Command: mv "big_folder" "/root/big_folder"
Error: mv /root/some_other_folder/big_folder /root/big_folder: received failure with description 'Failure'
mv /root/some_other_folder/big_folder /root/big_folder
。您得到什么错误信息?
cp -al
mv vs cp
问题已解决,但是我很想听听他为什么能够立即沿一个方向移动文件夹,而不能沿另一个方向移动文件夹。
received failure with description 'Failure'
。