在 Windows 7 中使用 attrib 時參數格式不匹配

在 Windows 7 中使用 attrib 時參數格式不匹配
C:\Windows\system32>attrib -r +s C:\Users\me\Desktop\folder_name
Parameter format not correct -

我想從資料夾中刪除只讀屬性。

到底是怎麼回事?我從微軟網站上得到了這個命令。

http://support.microsoft.com/kb/326549

謝謝 !

答案1

嘗試 attrib -r +s "C:\\Users\me\Desktop\folder_name"
如果路徑中有空格,則需要用雙引號將其引起來

相關內容