将文件从回收站还原到已删除的原始文件夹

将文件从回收站还原到已删除的原始文件夹

比如说,以前我有一个文件夹。这个文件夹里有一个文件。我删除了这个文件,它就进入了回收站。后来,我删除了这个文件所在的文件夹,它也进入了回收站。

过了一段时间,比如说六个月,我从回收站中删除了上面提到的文件夹,然后“恢复”了该文件。

文件去哪儿了?

答案1

文件去哪儿了?

它被恢复到其原始位置(目录也被恢复)。

删除前:

> dir test\*.txt
 Volume in drive F is Expansion
 Volume Serial Number is 3656-BB63

 Directory of F:\test\test

03/02/2017  13:43                 0 test.txt
               1 File(s)              0 bytes
               0 Dir(s)  1,704,590,606,336 bytes free

删除后/还原前:

> dir test\*.txt
The system cannot find the file specified.

在此处输入图片描述

还原后:

> dir test\*.txt
 Volume in drive F is Expansion
 Volume Serial Number is 3656-BB63

 Directory of F:\test\test

03/02/2017  13:43                 0 test.txt
               1 File(s)              0 bytes
               0 Dir(s)  1,704,590,606,336 bytes free

相关内容