|  | 
 
| plp626 银牌会员
 
      钻石会员
 
 
 积分 2278
 发帖 1020
 注册 2007-11-19
 状态 离线
 | 
| 『第 16 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
Originally posted by slore at 2008-3-2 12:05 AM:我们看到显示的原本文件夹少个点。
 ......
 应该是原创嘿嘿。起码我不是在别的地方转的。
 
 
什么意思? 
你是想说我在转喽,
 
       以前我发的不少帖子里,只要是我自己想出来的我就想注个原创,可随着学习的进步,看到以前的那些帖子我便不忍心想笑自己,因为过于浅显的代码也注个原创,那原创满天飞了.也显得联盟里的帖子没什么技术含量.
 
       就cmd里面那70来个命令,思维空间有限,只要是cmd自带帮助里介绍了的,说原创会引来许多白眼.除非有颠覆性的思维或着算法包含在里面.
如果是好帖,自然会被转.(欢迎大家转我这个帖!) 
Originally posted by slore at 2008-3-2 12:05 AM:We see that the original folder displayed is missing a dot.
 ......
 It should be original hehe. At least I didn't copy it from other places.
 
 
What does it mean? 
You mean I'm copying, right,
 
       In many of the posts I posted before, as long as it was something I thought of myself, I wanted to mark it as original, but as I progressed in my studies, when I looked back at those previous posts, I couldn't help but laugh at myself, because I marked something as original with overly simple code, then original posts would be everywhere. It would also make the posts in the alliance have little technical content.
 
       There are only about 70 commands in cmd. The thinking space is limited. As long as it's introduced in the cmd built-in help, saying it's original will attract many sneers. Unless there is a subversive thinking or algorithm included in it.
If it's a good post, it will naturally be copied. (Everyone is welcome to copy my post!) 
 
 
 |  | 
|  2008-3-2 00:59 |  | 
|  | 
 
| 26933062 银牌会员
 
      
 
 
 
 积分 2268
 发帖 879
 注册 2006-12-19
 状态 离线
 | 
| 『第 17 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
哈哈哈,plp626 兄误会了。我的意识是说,关于如何打开带点的文件夹已经不是个新鲜话题了,
 并非说你的这篇文章不是原创,而是说你在14楼用特大号字说明的观点我不认同。
 
 你说 “访问带点目录不是非要start……的哦。”
 我说你所访问的都是123这个目录的信息,实际上123..\这个目录还是存在的,里面的内容你通过双击新建的这个123这个目录也是看不到的。同样也是删除不了的。
 
Hahaha, brother plp626 has a misunderstanding.What I mean is that how to open folders with dots is not a new topic.
 It's not that your article is not original, but that I don't agree with the view you explained in extra-large font in floor 14.
 
 You said "To access a directory with a dot, you don't have to use start...".
 I mean what you are accessing is the information of the 123 directory. In fact, the directory 123..\ still exists, and the content inside can't be seen by double-clicking the newly created 123 directory. It's also impossible to delete it.
 
 
 
 
 |  
                  |  致精致简!
 |  | 
|  2008-3-2 04:18 |  | 
|  | 
 
| slore 铂金会员
 
        
 
 
 
 积分 5212
 发帖 2478
 注册 2007-2-8
 状态 离线
 | 
| 『第 18 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
汗~我是说我的红色高亮部分是原创的。 
不知道是不是我语文不过关哦~这样看不懂,那只好写个例子了。
 用你自己的眼睛去看能不能访问!!!@echo off
 md D:\Test
 cd /d D:\Test
 echo 生成测试文件
 echo 我是Slore>测试文本.txt
 echo.
 echo 创建畸形目录Slore.
 md Slore..\
 echo.
 echo 复制测试文件。
 copy 测试文本.txt Slore..\
 
 echo 创建访问Slore.的文件夹
 md Slore...\
 echo.
 echo.
 echo 你试试看你双击Slore..目录能看到文件不?
 echo 你再双击那个文本看能运行不?
 start %cd%
 pause>nul
 echo.
 echo.
 echo 现在看属性显示是0
 echo 我说了我们如果想查看属性需要建立无点目录。
 echo 建立空目录Slore
 md Slore
 echo 现在看属性吧。
 pause>nul
 Set /p dp=是否现在删除Test目录?(y/n)
 cd\
 if "%dp%"=="y" rd /s /q D:\test
 
 echo.
 echo 演示完毕!
 pause>nul
 
  图直接看不了,点下这个连接看吧。
Sweat~ I mean my red highlighted part is original. 
I don't know if my Chinese is not up to standard~ It's not understandable like this, so I have to write an example.
 Use your own eyes to see if you can access it!!!@echo off
 md D:\Test
 cd /d D:\Test
 echo Generate test file
 echo I am Slore>Test text.txt
 echo.
 echo Create abnormal directory Slore.
 md Slore..\
 echo.
 echo Copy test file.
 copy Test text.txt Slore..\
 
 echo Create folder to access Slore.
 md Slore...\
 echo.
 echo.
 echo See if you can see the file by double-clicking the Slore.. directory?
 echo See if you can run that text by double-clicking it again?
 start %cd%
 pause>nul
 echo.
 echo.
 echo Now see the attribute is 0
 I said that if we want to view the attribute, we need to create a dot-free directory.
 Create empty directory Slore
 md Slore
 echo Now see the attribute.
 pause>nul
 Set /p dp=Do you want to delete the Test directory now? (y/n)
 cd\
 if "%dp%"=="y" rd /s /q D:\test
 
 echo.
 echo Demo is complete!
 pause>nul
 
  If the picture can't be seen directly, click this link to see it.
 
 
 |  | 
|  2008-3-2 14:11 |  | 
|  | 
 
| plp626 银牌会员
 
      钻石会员
 
 
 积分 2278
 发帖 1020
 注册 2007-11-19
 状态 离线
 | 
| 『第 19 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
<img src="images/smilies/face-raspberry.png" align="absmiddle" border="0">那不好意思了, 
不过slore兄说的也不全对,那样只能对第一层畸形目录有效
 
比如执行(请粘贴下面代码到命令行下,用batch某些文件夹不能建立!)
 md test&cd test&echo plp626>1.txt
 md plp1..\ plp1..\plp2..\
 copy . plp1..\plp2..\
 
1.txt文件被复制到plp1..\plp2..\路径下了 
可是 再用你的方法建立:
 md plp1...\md plp1...\plp2...\
 
只能在plp1..目录下看到文件夹plp2. 
即使再"加点"建目录
 md plp1....\ plp1....\plp2....\md plp1.....\ plp1......\
 
 也不能用鼠标访问到所复制的文件,
 
看来来这"加点"方法对鼠标来说总是不能访问畸形目录内的畸形目录!
兄是否有其他方法? 
 Last edited by plp626 on 2008-3-2 at 04:53 PM ]
:P Then I'm sorry. 
But what brother slore said is not entirely correct. That would only be effective for the first - level abnormal directory.
 
For example, execute (please paste the following code into the command line, some folders cannot be created with batch! )
 md test&cd test&echo plp626>1.txt
 md plp1..\ plp1..\plp2..\
 copy . plp1..\plp2..\
 
The 1.txt file is copied to the plp1..\plp2..\ path. 
But then use your method to create:
 md plp1...\md plp1...\plp2...\
 
Only the folder plp2 can be seen under the plp1.. directory. 
Even if you "add more dots" to create directories
 md plp1....\ plp1....\plp2....\md plp1.....\ plp1......\
 
 You still can't access the copied file with the mouse. 
It seems that this "adding more dots" method always makes it impossible for the mouse to access the abnormal directory within the abnormal directory!
Brother, do you have any other methods? 
 Last edited by plp626 on 2008 - 3 - 2 at 04:53 PM ]
 
 
 |  | 
|  2008-3-2 16:28 |  | 
|  | 
 
| slore 铂金会员
 
        
 
 
 
 积分 5212
 发帖 2478
 注册 2007-2-8
 状态 离线
 | 
|    『第 20 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
请好好理解我14楼说的话。 
你的第2段代码改成:
 md plp1...\
 md plp1..\plp2...\
 
 
你看能访问不。。。请理解。。我去学校了,你慢慢看吧。 
自己比较区别再哪里。
Please understand what I said in the 14th floor. 
Change your second code segment to:
 md plp1...\
 md plp1..\plp2...\
 
 
See if it can be accessed... Please understand. I'm going to school, you can take your time to see. 
Compare the differences by yourself where they are.
 
 
 
 
 |  | 
|  2008-3-2 17:40 |  | 
|  | 
 
| plp626 银牌会员
 
      钻石会员
 
 
 积分 2278
 发帖 1020
 注册 2007-11-19
 状态 离线
 |  | 
|  2008-3-2 19:41 |  | 
|  | 
 
| 523066680 银牌会员
 
      SuperCleaner
 
 
 积分 2362
 发帖 1133
 注册 2008-2-2
 状态 离线
 | 
| 『第 22 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
我最害怕的事情md con\
 md con\nul\
 这个……会很恐怖吧……
 
My most feared thingmd con\
 md con\nul\
 This... will be very scary, right...
 
 
 
 |  | 
|  2008-3-5 19:05 |  | 
|  | 
 
| plp626 银牌会员
 
      钻石会员
 
 
 积分 2278
 发帖 1020
 注册 2007-11-19
 状态 离线
 |  | 
|  2008-3-5 23:09 |  | 
|  | 
 
| 523066680 银牌会员
 
      SuperCleaner
 
 
 积分 2362
 发帖 1133
 注册 2008-2-2
 状态 离线
 | 
| 『第 24 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
说是这么说啊……请恕我找茬……病毒还可以递增啊…… 多重不同类型的畸形……
 也可能是我多虑……希望病毒不要太变态才好……不过病毒应该不会做这么复杂吧…
 
It is said like this... Please forgive me for finding fault...Viruses can also increase incrementally... Multiple different types of deformities...
 It may also be that I am overthinking... I hope the virus won't be too abnormal... But viruses shouldn't be so complicated...
 
 
 
 |  | 
|  2008-3-7 18:07 |  | 
|  | 
 
| plp626 银牌会员
 
      钻石会员
 
 
 积分 2278
 发帖 1020
 注册 2007-11-19
 状态 离线
 | 
| 『第 25 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
病毒可能比你想得还变态,不过再变态也能干掉,我有个思路(抛砖引玉):
 用2>&1来得到畸形目录的深层路径,再用for分析路径干掉所有畸形目录应该不成问题,
 
Viruses may be more perverse than you think,But no matter how perverse can be eliminated, I have an idea (for discussion):
 Use 2>&1 to get the deep path of the abnormal directory, and then use for to analyze the path to eliminate all abnormal directories should be no problem,
 
 
 
 
 |  
                  |  山外有山,人外有人;低调做人,努力做事。
 
 进入网盘(各种工具)~~ 空间~~cmd学习
 |  | 
|  2008-3-7 21:14 |  | 
|  | 
 
| 523066680 银牌会员
 
      SuperCleaner
 
 
 积分 2362
 发帖 1133
 注册 2008-2-2
 状态 离线
 | 
| 『第 26 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
呀……2>&1我没看懂啊……先学学看……您给教下拉
 
 Last edited by 523066680 on 2008-3-8 at 07:01 PM ]
 
Ah... I didn't understand 2>&1... Let's learn first...
 Last edited by 523066680 on 2008-3-8 at 07:01 PM ]
 
 
 
 |  | 
|  2008-3-8 18:41 |  | 
|  | 
 
| 523066680 银牌会员
 
      SuperCleaner
 
 
 积分 2362
 发帖 1133
 注册 2008-2-2
 状态 离线
 | 
| 『第 27 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
其实病毒如果还加上cacls        会很……阿里卤鸭…… 
Actually, if the virus also adds cacls, it will be very... Ali roast duck... 
 
 
 |  | 
|  2008-3-8 18:41 |  | 
|  | 
 
| learner0 初级用户
 
   
 
 
 
 积分 108
 发帖 49
 注册 2008-2-26
 状态 离线
 | 
| 『第 28 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
Originally posted by plp626 at 2008-3-5 11:09 PM:rd /q/s con\nul\
 rd /q/s con\
 
如果con\nul\下还有目录,次命令rd /q/s con\nul\无效,rd /q/s con\具有通用性。 
Originally posted by plp626 at 2008-3-5 11:09 PM:rd /q/s con\nul\
 rd /q/s con\
 
If there are still directories under con\nul\, the command rd /q/s con\nul\ is invalid, and rd /q/s con\ is universal. 
 
 
 |  | 
|  2008-3-8 19:32 |  | 
|  | 
 
| plp626 银牌会员
 
      钻石会员
 
 
 积分 2278
 发帖 1020
 注册 2007-11-19
 状态 离线
 | 
| 『第 29 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
你们别逼我,我只是不想写.再怎么变态的目录,都可以轻轻一点,一切搞定,
 
You guys don't push me, I just don't want to write.No matter how "weird" the directory is, you can just click it once and everything is done.
 
 
 
 
 |  
                  |  山外有山,人外有人;低调做人,努力做事。
 
 进入网盘(各种工具)~~ 空间~~cmd学习
 |  | 
|  2008-3-9 01:36 |  | 
|  | 
 
| 523066680 银牌会员
 
      SuperCleaner
 
 
 积分 2362
 发帖 1133
 注册 2008-2-2
 状态 离线
 | 
| 『第 30 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
看帖就知道你比我厉害多了……教下我这种菜鸟拉 
Reading the post, I can tell you're way more capable than me... Teach a noob like me, please 
 
 
 |  | 
|  2008-3-9 10:42 |  |