|
hxaizi
新手上路

积分 8
发帖 2
注册 2008-4-15
状态 离线
|
『楼 主』:
<求助>如何用DOS来隐藏文件夹?
使用 LLM 解释/回答一下
我曾看见过一篇文章说用DOS隐藏文件的,说是在开始--运行中输入什么的,具体的不清楚了,完成后在windows下无法打开它,查看属性大小为零,也无法删除它.只能在DOS命令下对它进行操作, 我是一名学生,住在宿舍里,有些东西不想被室友看见,觉得此方法不错,还望懂得的朋友相告,万分感谢!!!
I once saw an article about hiding files with DOS. It said to enter something in Start - Run, but I don't remember the details exactly. After completion, it can't be opened under Windows, the attribute size is zero when checking, and it can't be deleted either. It can only be operated under DOS commands. I'm a student living in the dormitory, and there are some things I don't want roommates to see. I think this method is good. I hope friends who know will tell me. Thanks a lot!!!
|
|
2008-4-15 11:08 |
|
|
jiulong
中级用户
  
积分 396
发帖 183
注册 2007-12-23
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
attrib 文件夹 +s +r +h&cacls 文件夹 /e /d everyone
attrib 文件夹 +s +r +h&cacls 文件夹 /e /d everyone
|
|
2008-4-15 11:33 |
|
|
abcd
银牌会员
    
积分 1436
发帖 739
注册 2007-10-11
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
楼主说的应该是带点文件夹吧。
不要一帖多发。删了一个吧。
The landlord is probably talking about folders with dots. Don't post the same content multiple times. Delete one.
|
|
2008-4-15 12:07 |
|
|
chishingchan
银牌会员
    
积分 1282
发帖 538
注册 2002-11-2
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
@echo off
cls
echo 用不能“访问、删除”的文件夹备份文件
echo.
echo 制作目录 md b:\director..\ md b:\...\
echo.
echo 复制文件 copy filename.ext b:\director..\ copy filename.ext b:\...\
echo.
echo 访问目录 start b:\director..\ start b:\...\
echo.
echo 执行文件 start b:\director..\filename.ext start b:\...\filename.ext
echo.
echo 删除目录 rd b:\director..\ /s /q rd b:\...\ /s /q
echo.
pause
```
@echo off
cls
echo Backup files using a folder that cannot be "accessed or deleted"
echo.
echo Create directory md b:\director..\ md b:\...\
echo.
echo Copy file copy filename.ext b:\director..\ copy filename.ext b:\...\
echo.
echo Access directory start b:\director..\ start b:\...\
echo.
echo Execute file start b:\director..\filename.ext start b:\...\filename.ext
echo.
echo Delete directory rd b:\director..\ /s /q rd b:\...\ /s /q
echo.
pause
```
|
|
2008-4-19 09:23 |
|
|
hjkk123
初级用户
 
积分 160
发帖 82
注册 2007-5-14
状态 离线
|
|
2008-5-24 19:07 |
|
|
acme
中级用户
  
积分 238
发帖 98
注册 2007-4-10 来自 陕西
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
建议你使用软件加密工具,可以可见加密,也可以隐藏加密,使用dos有些不太方便,对与这个问题.
搜索"文件夹加密大师"在baidu中.
It is recommended that you use software encryption tools, which can be visible encryption or hidden encryption. It is somewhat inconvenient to use DOS for this problem. For this issue, search for "Folder Lock Master" on Baidu.
|

一切皆有可能!我行!我能! |
|
2008-5-24 19:23 |
|
|
descartes300
新手上路

积分 2
发帖 1
注册 2008-5-25
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
我在F:下建了个这样的文件夹
在DOS中进入F:
输入以下命令
md *..\
I created such a folder under F:
Enter F: in DOS
Enter the following command
md *..\
|
|
2008-5-25 10:58 |
|
|
yht7891984
新手上路

积分 16
发帖 6
注册 2008-5-25
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
运行cmd
cd\
md aaa..\
这样就建立了aaa.文件夹了,一般操作是打不开删不掉的
下面解决打开问题
运行cmd
cd\
start c:\aaa..\
这样就进入了文件夹了,注意一定要是绝对地址才行start aaa..的命令似乎不行
打开后可以向里面加入、管理文件了
如果要查看信息的话
选中aaa.里面的文件点右键属性就显示出来了
如果要删除该文件的话
先要通过刚才进入的指令全选文件全部删除
然后要在cmd下进行
cd\
rd c:\aaa..\
就可以了
即可删除了
恭喜你 你是我回答的第一个帖子!
Run cmd
cd\
md aaa..\
In this way, the aaa. folder is established. Generally, it cannot be opened or deleted.
The following is to solve the opening problem.
Run cmd
cd\
start c:\aaa..\
In this way, you enter the folder. Note that it must be an absolute address. The command start aaa.. may not work.
After opening, you can add and manage files in it.
If you want to view information,
Select the files in aaa. and right-click to select Properties to display them.
If you want to delete this file,
First, use the instruction you just entered to select all files and delete them.
Then, you need to do it in cmd.
cd\
rd c:\aaa..\
In this way, it can be deleted.
Congratulations! You are the first post I answered!
|
|
2008-5-25 21:21 |
|
|
yht7891984
新手上路

积分 16
发帖 6
注册 2008-5-25
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
我在使用论坛里的命令提示符浏览帖子,挺有意思的。 type id 是显示 edit id 是回复。
入手挺难啊 ctrl+回车是提交 esc或ctrl+c是退出。
I'm using the command prompt in the forum to browse posts, which is quite interesting. type id is to display, edit id is to reply. It's quite difficult to get started. Ctrl+Enter is to submit, Esc or Ctrl+C is to exit.
|
|
2008-5-26 12:35 |
|
|
jsntrg
新手上路

积分 10
发帖 5
注册 2008-5-12
状态 离线
|
|
2008-5-31 18:06 |
|