计算机显示 c:\Documents 不存在

计算机显示 c:\Documents 不存在
  • 在“用户”中,您的书签和历史记录仍然公开。
  • 在“个人资料”中,它保持私密

有一个详细教程。然而在最后一步我得到了一个错误:

c:\Documents does not exist.

答案1

该文件夹是:

C:\Documents and Settings\\Local Settings\Application Data\Google\Chrome\User Data

名称中有空格。如果您将其作为参数传递给脚本,则需要将其括在引号中:

“C:\Documents and Settings\\Local Settings\Application Data\Google\Chrome\User Data”

否则,Windows 将在空格处拆分字符串 - 这就是为什么您会收到如下错误报告

“C:\Documents” 不存在。

相关内容