|
gmy
版主
        操作系统爱好者
积分 1113
发帖 392
注册 2002-11-11
状态 离线
|
『第 16 楼』:
使用 LLM 解释/回答一下
已经够用了,因为我想出了更好的办法,可完全在纯DOS下运行,谢谢Wengier!
Last edited by gmy on 2006-6-14 at 11:11 ]
It's enough because I've come up with a better way that can run completely under pure DOS. Thanks, Wengier!
Last edited by gmy on 2006-6-14 at 11:11 ]
|

DOS之家 http://doshome.com 站长 葛明阳 |
|
2006-6-14 08:34 |
|
|
Wengier
系统支持
             “新DOS时代”站长
积分 27736
发帖 10521
注册 2002-10-9
状态 离线
|
『第 17 楼』:
使用 LLM 解释/回答一下
gmy:
这个其实和NT CMD下短文件名的生成方式有直接关系。要知道,NT CMD下短文件名的生成方式和DOS/Win9x下是有着很大区别的并且比较不规范,如想刻意完全模仿NT CMD下建立E2E2~1这种对应的短文件名的话,需要大幅修改DOSLFN中现有的短文件名生成方式(现有的生成方式是基于DOS/Win9x的),并且加入对字符代码的支持(这与NT CMD下短文件名的特殊生成原理有关)。可见这个要真正实施起来并非十分简单的事情,而且可能会对DOS的兼容性造成影响。而且毕竟,这仅仅是短文件名的名称的不同,与..等特殊目录的隐藏并没有什么直接关系,所以对于XP的资源管理器而言这种目录还是完全隐藏的,效果其实没有什么不同的。
gmy:
This is actually directly related to the way short filenames are generated in NT CMD. You need to know that the way short filenames are generated in NT CMD is quite different from that in DOS/Win9x and is relatively non-standard. If you want to deliberately and completely imitate the corresponding short filename like E2E2~1 established in NT CMD, you need to greatly modify the existing short filename generation method in DOSLFN (the existing generation method is based on DOS/Win9x) and add support for character codes (this is related to the special generation principle of short filenames in NT CMD). It can be seen that it is not very simple to really implement this, and it may have an impact on the compatibility of DOS. Moreover, after all, this is only the difference in the names of short filenames, and there is no direct relationship with the hiding of special directories such as.., so for the Explorer of XP, such directories are still completely hidden, and the effect is actually not different.
|

Wengier - 新DOS时代
欢迎大家来到我的“新DOS时代”网站,里面有各类DOS软件和资料,地址:
http://wendos.mycool.net/
E-Mail & MSN: wengierwu AT hotmail.com (最近比较忙,有事请联系DOSroot和雨露,谢谢!)
 |
|
2006-6-14 10:49 |
|
|
hymm2008
初级用户
 
积分 102
发帖 43
注册 2006-9-7
状态 离线
|
『第 18 楼』:
使用 LLM 解释/回答一下
問一下管理员 Wengier ,DOSLFN怎麼用呀,是在純DOS下用運行嗎?
Ask the administrator Wengier, how to use DOSLFN? Is it run under pure DOS?
|
|
2006-9-8 04:36 |
|
|
Wengier
系统支持
             “新DOS时代”站长
积分 27736
发帖 10521
注册 2002-10-9
状态 离线
|
『第 19 楼』:
使用 LLM 解释/回答一下
Originally posted by hymm2008 at 2006-9-8 04:36 AM:
問一下管理员 Wengier ,DOSLFN怎麼用呀,是在純DOS下用運行嗎?
是的,就跟一般的TSR程序(如SMARTDRV等)一样运行就可以了。
Originally posted by hymm2008 at 2006-9-8 04:36 AM:
Ask the administrator Wengier, how to use DOSLFN? Is it run under pure DOS?
Yes, it runs just like a general TSR program (such as SMARTDRV, etc.).
|

Wengier - 新DOS时代
欢迎大家来到我的“新DOS时代”网站,里面有各类DOS软件和资料,地址:
http://wendos.mycool.net/
E-Mail & MSN: wengierwu AT hotmail.com (最近比较忙,有事请联系DOSroot和雨露,谢谢!)
 |
|
2006-9-8 10:28 |
|
|
tmt2006
初级用户
 
积分 135
发帖 49
注册 2006-4-28
状态 离线
|
『第 20 楼』:
使用 LLM 解释/回答一下
同志们,多研究NTFS下的东西。
Comrades, study more about things under NTFS.
|
|
2006-9-13 22:57 |
|
|
chishingchancn
中级用户
  
积分 284
发帖 113
注册 2006-7-27
状态 离线
|
『第 21 楼』:
使用 LLM 解释/回答一下
制作目录 md b:\director..\ md b:\...\
复制文件 copy filename.ext b:\director..\ copy filename.ext b:\...\
访问目录 start b:\director..\ start b:\...\
执行文件 start b:\director..\filename.ext start b:\...\filename.ext
删除目录 rd b:\director..\ /s /q rd b:\...\ /s /q
Last edited by chishingchancn on 2006-9-17 at 20:22 ]
Create directory md b:\director..\ md b:\...\
Copy file copy filename.ext b:\director..\ copy filename.ext b:\...\
Access directory start b:\director..\ start b:\...\
Execute file start b:\director..\filename.ext start b:\...\filename.ext
Delete directory rd b:\director..\ /s /q rd b:\...\ /s /q
Last edited by chishingchancn on 2006-9-17 at 20:22 ]
|
|
2006-9-17 20:04 |
|
|
jackson313
初级用户
 
积分 48
发帖 26
注册 2007-4-9
状态 离线
|
|
2007-4-15 15:01 |
|
|
drake
初级用户
 
积分 38
发帖 15
注册 2007-2-10
状态 离线
|
『第 23 楼』:
使用 LLM 解释/回答一下
Originally posted by gmy at 2006-6-11 08:38 PM:
上次支持 d:\abc. 的DOSLFN 已经下载,很好用。
但不支持 d:\..\ 这样的目录!
因为在无忧论坛上发现 md d:\..\ 这个技巧 (资源管理器看不到,即便“ ...
请教版主,我下载了WENGIER在6楼所提供的DOSLFN,在XP的CMD状态下执行完DOSLFN后,用MD命令却根本无法实现您所说的隐藏目录啊,请问我是错在哪里呢.
比如说我执行
F:\MD ..
提示ACCESS IS DENIED
Originally posted by gmy at 2006-6-11 08:38 PM:
The previous DOSLFN that supports d:\abc. has been downloaded and it works well.
But it does not support directory like d:\..\!
Because I found the trick of md d:\..\ on Wuyou Forum (the resource manager can't see it, even though " ...
Dear moderator, I downloaded the DOSLFN provided by WENGIER on the 6th floor. After executing DOSLFN in the CMD state of XP, I can't realize the hidden directory you mentioned at all with the MD command. What's wrong with me?
For example, I execute
F:\MD ..
and it prompts ACCESS IS DENIED
|
|
2007-4-17 01:51 |
|
|
Wengier
系统支持
             “新DOS时代”站长
积分 27736
发帖 10521
注册 2002-10-9
状态 离线
|
『第 24 楼』:
使用 LLM 解释/回答一下
楼上的,从DOSLFN的名称即可知道这个程序是在DOS下支持长文件名的工具,在CMD下使用它当然是没有用的!错误的运行环境正是错误所在。
The person upstairs, from the name DOSLFN, you can know that this program is a tool to support long file names under DOS. Of course, it is useless to use it under CMD! The wrong running environment is exactly the problem.
|

Wengier - 新DOS时代
欢迎大家来到我的“新DOS时代”网站,里面有各类DOS软件和资料,地址:
http://wendos.mycool.net/
E-Mail & MSN: wengierwu AT hotmail.com (最近比较忙,有事请联系DOSroot和雨露,谢谢!)
 |
|
2007-4-17 02:11 |
|
|
wfyinghun
初级用户
 
积分 126
发帖 53
注册 2007-4-3
状态 离线
|
『第 25 楼』:
关于MD \...\的问题
使用 LLM 解释/回答一下
我在CMD下用md \...\创建了一个文件夹,我现在怎么显示或者找到它啊,我用start来操作,提示:"该文件没有程序与之关联来执行操作"!
I created a folder using md \...\ in CMD. Now how do I display or find it? I used start to operate and got the prompt: "There is no program associated with this file to perform the operation"!
|
|
2007-4-17 04:05 |
|
|
gutou99
新手上路

积分 2
发帖 1
注册 2007-4-19
状态 离线
|
『第 26 楼』:
使用 LLM 解释/回答一下
长知识了, ,,,着个文件夹我折腾好久了,,如今毛色炖开啊!!!挖哈哈
Got to learn something new. Oh, this folder I've been struggling with for a long time, now it's finally sorted out! Hee hee!
|
|
2007-4-19 23:36 |
|
|
chenychan
新手上路

积分 2
发帖 1
注册 2007-4-22
状态 离线
|
『第 27 楼』:
使用 LLM 解释/回答一下
本人超菜鸟,但也想建隐藏目录啊。学习ing。。。。。
试了一下,能够建立名为“~1”的文件夹,不过不能在NTFS分区内建立此类文件夹。
另外,是否可以命名自定义的文件名,不要一定非要是“~1”,如:“yingcang~1 ; mine~1 等等”行不行?同样要实现在windows下深度隐藏,只能通过直接的文件路径访问。试了好几次都不行。
反正我搞不出来啊。虽然能够建立如:“cdef...”这样的文件夹,但是其在windows下可见呀。还有在子目录下建此类隐藏文件我也失败了。
望 高手指教!谢谢!
最好有一步步的操作流程,因为本人超菜。
Last edited by chenychan on 2007-4-22 at 07:42 AM ]
I'm a super newbie, but I also want to create hidden directories. Learning...
I tried and can create a folder named "~1", but I can't create such a folder in an NTFS partition.
Also, can I name custom file names, not necessarily "~1", like "yingcang~1; mine~1, etc."? Is that okay? Also, to achieve deep hiding in Windows, it can only be accessed through the direct file path. I tried several times and it didn't work.
Anyway, I can't figure it out. Although I can create folders like "cdef...", they are visible in Windows. Also, I failed to create such hidden files in subdirectories.
Hope an expert can give instructions! Thank you!
It's best to have step-by-step operation procedures because I'm super newbie.
Last edited by chenychan on 2007-4-22 at 07:42 AM ]
|
|
2007-4-22 14:54 |
|
|
siai88
初级用户
  职业灌水者
积分 118
发帖 62
注册 2007-4-16
状态 离线
|
|
2007-4-23 05:22 |
|
|
lp1129
初级用户
 
积分 186
发帖 92
注册 2007-3-27
状态 离线
|
『第 29 楼』:
使用 LLM 解释/回答一下
多谢了,好用,又掌握了方法
Thanks a lot. It works well and I've mastered the method again.
|
|
2007-5-9 16:06 |
|
|
47022284
新手上路

积分 14
发帖 7
注册 2007-5-9
状态 离线
|
『第 30 楼』:
我不能下载
使用 LLM 解释/回答一下
我不能下载DOSLFN那个文件
I can't download the file named DOSLFN.
|
|
2007-5-9 16:12 |
|