如何访问没有名称的文件夹?

如何访问没有名称的文件夹?

这是例子.......

在此处输入图片描述

问题是闪存占用了 8 GB 中的 5 GB,但当我访问内存时没有显示任何内容。我使用了以下命令

dir /a:hd d:\

但什么都没显示,只有两个目录。但你无法访问它,因为它没有名字。

当我用此语句检查目录时

C:\Windows\System32>dir /a d:\

向我展示了以下内容

 Volume in drive D is FLASH
 Volume Serial Number is 94A8-15A7

 Directory of d:\

File Not Found

但如果用这个语句检查

C:\Windows\System32>dir /a d:\

向我展示了以下内容

 Volume in drive D is FLASH
 Volume Serial Number is 94A8-15A7

 Directory of d:\

10/25/2016  09:38 PM    <DIR>                                   //**THIS**
10/26/2016  10:12 AM    <DIR>          System Volume Information
               0 File(s)              0 bytes
               2 Dir(s)   2,211,725,312 bytes free

我处理了这个命令

D:\>dir /x

并向我展示了以下内容

Volume in drive D is FLASH
 Volume Serial Number is 94A8-15A7

 Directory of d:\

File Not Found

也可以尝试这个命令

mkdir "\\?\D:\temp\ "

本例 访问无名文件夹的内容

我创建了文件夹,当我检查时显示以下内容

 Volume in drive D is FLASH
 Volume Serial Number is 94A8-15A7

 Directory of d:\temp\

10/27/2016  07:56 AM    <DIR>          .
10/27/2016  07:56 AM    <DIR>          ..
               0 File(s)              0 bytes
               2 Dir(s)   2,211,692,544 bytes free

现在,当我尝试执行第二条命令时

copy "D:\temp\ \*.*" D:\temp

或者

copy "\\?\D:\temp\ \*.*" D:\temp

给我看这个

D:\temp\ \*.*
The system cannot find the file specified.
        0 file(s) copied.

\\?\D:\temp\ \*.*
The system cannot find the file specified.
        0 file(s) copied.

我不知道我是否做错了什么......

我可以做什么? 如何访问没有名称的文件夹?

答案1

但你不能访问,因为它没有名字

它很可能有一个名字。只是你不知道它的名字是什么。

例如,很容易创建一个名为“ ”的目录

在此处输入图片描述

在此处输入图片描述

答案2

尝试了所有命令并查找类似情况后,在帮助中测试了 dir 命令及其属性,我发现有一个属性可以列出所有目录和子目录:

C:\>dir /?
Displays a list of files and subdirectories in a directory.

DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]
  [/O[[:]sortorder]] [/P] [/Q] [/R] [/S] [/T[[:]timefield]] [/W] [/X] [/4]

  [drive:][path][filename]
              Specifies drive, directory, and/or files to list.

  /A          Displays files with specified attributes.
  attributes   D  Directories                R  Read-only files
               H  Hidden files               A  Files ready for archiving
               S  System files               I  Not content indexed files
               L  Reparse Points             -  Prefix meaning not

/S          Displays files in specified directory and all subdirectories.\\**THIS**

我看到了文件夹,它出现在您的目录列表中。尝试留出空间来访问它后,按 Tab 键完成,结果显示正常:

 C:\>dir /a/s d:\
     Volume in drive D is FLASH
     Volume Serial Number is 94A8-15A7

 Directory of d:\

10/25/2016  09:38 PM    <DIR>           
10/26/2016  10:12 AM    <DIR>          System Volume Information
               0 File(s)              0 bytes
 Directory of d:\ \PVR **This (d:\ \)**

01/01/1980  12:04 AM    <DIR>          .
01/01/1980  12:04 AM    <DIR>          ..
               0 File(s)              0 bytes

知道他可以自动填充你使用命令选项卡的方式

C:\>attrib  d:\ 
   SH        D:\ 
C:\>attrib -S -H D:\ 

C:\>attrib  D:\ 
             D:\ 

准备好了,我可以在浏览器中看到新文件夹并访问其中包含的信息。非常感谢大家的时间。

相关内容