|
Adam24Eve
初级用户
 
积分 36
发帖 14
注册 2007-4-20
状态 离线
|
『楼 主』:
这个特殊的文件夹 如何加隐藏属性?
使用 LLM 解释/回答一下
批处理 md " "\ 建立一个空名文件夹而且不能在windows下删除,可能不能给他加上隐藏属性啊??attrib 好像没用,不希望用纯dos。
Last edited by Adam24Eve on 2007-4-23 at 10:56 PM ]
Batch processing: md " "\ creates an empty-named folder and cannot be deleted under Windows. Maybe you can't add the hidden attribute to it? attrib seems not to work. I don't want to use pure DOS.
Last edited by Adam24Eve on 2007-4-23 at 10:56 PM ]
|
|
2007-4-22 02:15 |
|
|
Adam24Eve
初级用户
 
积分 36
发帖 14
注册 2007-4-20
状态 离线
|
|
2007-4-25 03:42 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
发现这个文件无法设置属性,用鼠标设置了属性,再打开看的时候又没有了,可能和它的文件名的特殊性有关吧。
但是可以对它里面的文件进行移动、复制、修改、删除等操作。
I found that this file cannot set attributes. After setting the attributes with the mouse, when I open it again, they are gone. It may be related to the particularity of its file name.
But I can perform operations such as moving, copying, modifying, and deleting on the files inside it.
|
|
2007-4-25 04:34 |
|
|
lililulula
中级用户
  
积分 302
发帖 138
注册 2007-3-29
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
to lxmxn:
此文件夹我这里的情况是无法移动、复制、删除、修改
PS:等待其他人测试并解决
to lxmxn:
The situation with this folder here is that it cannot be moved, copied, deleted, or modified.
PS: Wait for others to test and solve.
|
|
2007-4-25 04:38 |
|
|
bjsh
银牌会员
    
积分 2000
发帖 621
注册 2007-1-1
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
我和lxmxn兄是一样的;
这个文件夹是不能修改;
但其内部的文件可以移动复制删除修改;
lxmxn也是表达的这个意思;
lililulula误解了;
I am the same as Brother lxmxn;
This folder cannot be modified;
But the files inside it can be moved, copied, deleted, and modified;
lxmxn also expressed this meaning;
lililulula misunderstood;
|
|
2007-4-25 04:51 |
|
|
zh159
金牌会员
     
积分 3687
发帖 1467
注册 2005-8-8
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
对,只能动里面的东西却不能动文件夹本身
Yes, you can only move the things inside but not the folder itself
|
|
2007-4-25 04:53 |
|
|
lililulula
中级用户
  
积分 302
发帖 138
注册 2007-3-29
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
恩 没看清 里面的文件确实可以移动,但是这个空文件名文件无法做任何操作
另外可以复制空文件名指定操作 rd /s path:\"_" "_"处为复制的文件名,但是自己没操作,前面误操作删了D:\的一些东西,希望把文件建在无关目录下的朋友测试下是否可以删除
Last edited by lililulula on 2007-4-24 at 05:55 PM ]
Well, didn't see clearly. The files inside can indeed be moved, but this file with an empty file name can't be operated on in any way. Also, you can copy and specify operations on the empty file name. Use rd /s path:\"_\" where "_" is the file name to be copied. But I didn't operate, and I mistakenly deleted some things in D:\ earlier. I hope friends who build files in irrelevant directories can test if it can be deleted.
Last edited by lililulula on 2007-4-24 at 05:55 PM ]
|
|
2007-4-25 06:29 |
|
|
lxmxn
版主
       
积分 11386
发帖 4938
注册 2006-7-23
状态 离线
|
|
2007-4-25 07:01 |
|
|
flyinspace
银牌会员
    
积分 1206
发帖 517
注册 2007-3-25
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
7楼不能删除的原因是。没有加你那个 \
The reason why floor 7 cannot be deleted is. There is no addition of your that \
|

知,不觉多。不知,乃求知 |
|
2007-4-25 07:29 |
|
|
balinger
中级用户
  
积分 356
发帖 115
注册 2004-7-27
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
我收藏的ATTR.COM可以,我试过。
首先 dir /x /ad 得到目录的短目录名(比如0200~1)
然后 ATTR.COM +h 短目录名
The ATTR.COM I collected is okay, I have tried it. First, dir /x /ad to get the short directory name of the directory (such as 0200~1), then ATTR.COM +h short directory name
|
|
2007-4-25 08:18 |
|
|
Adam24Eve
初级用户
 
积分 36
发帖 14
注册 2007-4-20
状态 离线
|
『第 11 楼』:
使用 LLM 解释/回答一下
谢谢楼上!!我试试
Thanks to the upstairs! I'll try it
|
|
2007-4-27 08:41 |
|
|
Adam24Eve
初级用户
 
积分 36
发帖 14
注册 2007-4-20
状态 离线
|
『第 12 楼』:
使用 LLM 解释/回答一下
成功!!感谢 balinger 兄 解决了我多年的心病!!!
Success!! Thanks to Brother balinger for solving my long-standing problem!!!
|
|
2007-4-27 08:51 |
|
|
52500999
初级用户
  我是坏蛋
积分 46
发帖 20
注册 2007-4-27 来自 ⅡMan
状态 离线
|
『第 13 楼』:
使用 LLM 解释/回答一下
哇。。
好像很厉害的样子。。。。
Wow. . .
It seems quite impressive. . .
|

只要我不睜開眼睛
这个世界就不會醒來 |
|
2007-4-27 08:55 |
|
|
bjsh
银牌会员
    
积分 2000
发帖 621
注册 2007-1-1
状态 离线
|
『第 14 楼』:
使用 LLM 解释/回答一下
attr.com xpsp2下测试通过;
似乎vista不行
估计vista上16位的不大支持了吧
Tested under Windows XP SP2; Seems Vista doesn't work. Probably 16-bit isn't well supported on Vista anymore.
|
|
2007-4-27 09:29 |
|
|
zhuangtugou
新手上路

积分 12
发帖 5
注册 2007-5-6
状态 离线
|
『第 15 楼』:
使用 LLM 解释/回答一下
在DOS下输入 rd 0200~1 /s/q 按回车就可以删除了
Type "rd 0200~1 /s/q" in DOS and press Enter to delete.
|
|
2007-5-7 00:09 |
|