请问要怎么做????我只会给整个机子设上密码 `就是访问我的计算机必须用密码``不会给单个文件夹设上密码`大家说要怎么设啊??我以前在学校曾经设过``后来给忘了````
參考答案:打开要修改的文件夹,选择“查看/自定义文件夹”,在出现的“选项框”中选择“创建或编辑HTML文档”,点击两次“下一步”,接下来单击“完成”即可.
用记事本打开要加密文件夹的“folder.htt”文件(这个文件是隐藏的)找到:
“<META HTTP-EQUIV=“Content-Type” CONTENT=“text/html; charset=gb2312”>
<!-- allow references to any resources you might add to the folder -->
<!-- (a “webbot” is a special wrapper for FrontPage compatibility) -->
<!-- webbot bot=“HTMLMarkup” tag=“base” startspan -->
<base href=“%THISDIRPATH%\”>
<!-- webbot bot=“HTMLMarkup” endspan -->”一段,在此段后加入:
“<script language=“vbscript”>
function askpass()
document.all.filelist.style.visibility =“hidden”
passwrd =“22222”
getii=window.prompt(“请输入密码:”)
if getii=passwrd then
window.alert(“欢迎!!!”)
document.all.filelist.style.visibility =“visible”
else
window.alert(“密码错!!!”)
end if
end function
</script>”
一段字节,然后在“<body scroll=no onload=“Init()”>”一句前添加“<body scroll=no onload=“askpass()”>”一句保存退出即可。(其中“passwrd = “22222””中的“22222”表示密码,可以随便设置。)这样你的密码就做好了,刷新文件夹后密码便可以使用了
你还可以到电脑报网站去下载一个文件夹加密软件。这样更加方便。