惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
博客园 - 聂微东
Application and Cybersecurity Blog
Application and Cybersecurity Blog
MyScale Blog
MyScale Blog
罗磊的独立博客
H
Help Net Security
L
LangChain Blog
T
Threat Research - Cisco Blogs
量子位
S
Securelist
Last Week in AI
Last Week in AI
L
Lohrmann on Cybersecurity
T
The Exploit Database - CXSecurity.com
P
Privacy International News Feed
The Hacker News
The Hacker News
Vercel News
Vercel News
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
Cybersecurity and Infrastructure Security Agency CISA
T
The Blog of Author Tim Ferriss
T
Threatpost
Security Latest
Security Latest
P
Palo Alto Networks Blog
Microsoft Security Blog
Microsoft Security Blog
NISL@THU
NISL@THU
F
Full Disclosure
WordPress大学
WordPress大学
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Heimdal Security Blog
J
Java Code Geeks
Recorded Future
Recorded Future
Hugging Face - Blog
Hugging Face - Blog
G
GRAHAM CLULEY
Know Your Adversary
Know Your Adversary
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
B
Blog RSS Feed
月光博客
月光博客
C
Cisco Blogs
V
Visual Studio Blog
D
DataBreaches.Net
H
Hacker News: Front Page
博客园 - 叶小钗
N
News and Events Feed by Topic
爱范儿
爱范儿
A
Arctic Wolf

博客园 - 云的恬淡,风的自由

现在我空仓!随时出击,不是现在,是在将来,要知什么时候,常来这里看看! 沪市,深市创近年来最大走跌幅 理解ASP.NET中的三层中的DAL、BLL和USL(转自51aspx) 基本应用程序的创建和部署 创建部署项目 汇编代码 照片尺寸 ASCII 基本字符对照表 一个函数控制多个按纽的两种方法 - 云的恬淡,风的自由 - 博客园 button的command和click事件的区别 c#编写QQ群发器 datagridview分页时直接到指定页 世界各地域名后缀对照表 建立隐藏帐号 网络扫描器 端口服务对照表 GridView学习 csdn中的一些asp.net2.0好文章 Asp.net学习资源收藏
隐藏的文件夹
云的恬淡,风的自由 · 2007-10-14 · via 博客园 - 云的恬淡,风的自由

隐藏的文件夹

Posted on 2007-10-14 16:52  云的恬淡,风的自由  阅读(188)  评论()    收藏  举报

首先,在开始-运行里输入cmd,打开到dos 模式。
切换到你想要隐藏的文件夹的根目录,例如:
d:\ 在这里输入
dir /a 回车就会看到RECYCLER 这样一个文件夹了,
依次输入
cd RECYCLER
dir /a
cd S-1-5-21-57989841-1993962763-854245398-1003
dir /a
attrib desktop.ini -s -h
copy desktop.ini d:\
找到你要隐藏的文件夹,把desktop.ini拷贝到这个文件夹,
然后用命令输入
copy d:\desktop.ini d:\你要隐藏的文件夹
attrib d:\你要隐藏的文件夹\desktop.ini +s +h
attrib d:\你要隐藏的文件夹 +s
这样就完成了,你要隐藏的文件夹就变成回收站了,对于多个文件和文件夹你可以参考for命令。
打开这个文件夹也很简单,只要在dos 模式下输入
attrib d:\你要隐藏的文件夹 -s
就能正常浏览了。