有人知道将多个目录映射到一个虚拟驱动器或目录的软件吗?
当我打开虚拟目录时,我希望从映射目录中看到所有文件,就像它是一个物理目录一样。
Linux软件mhddfs似乎完全符合我的需要。
来自http://svn.uvw.ru/mhddfs/trunk/README
Consider we have two hard drives with the content below:
/hdd1 /hdd2
| |
+-- /dir1 +-- /dir1
| | | |
| +- file2 | +- file4
| | +- file2
+-- file1 |
| +-- file5
+-- /dir2 |
| +-- /dir3
+- file3 |
+- file6
mounting this tree with the command:
mhddfs /hdd1,/hdd2 /hdd_common
into the specified file system point we will see a combined tree.
In the united tree we can see all the directories and files. Note
file2 of 2nd hdd is not visible (because 1st hdd has the file2
already).
/hdd_common
|
+-- /dir1
| |
| +-- file2 -> /hdd1/dir1/file2
| +-- file4
|
|-- /dir2
| |
| + file3
|
+-- /dir3
| |
| +-- file6
|
+-- file1
+-- file5
由于
答案 0 :(得分:0)
这不是您想要的解决方案,但是如果您可以使用在新目标中拥有自己的子目录的所有源目录,则可以从Sysinternals Suite中查看Windows工具junction。
它允许您创建和管理符号链接。你的树结构会是这样的:
E:\hdd_common
├───hdd1
│ └───some folder structure [...]
└───hdd2
└───some other folder structure [...]
称之为:
junction "e:\hdd_common\hdd1" "f:\"
junction "e:\hdd_common\hdd2" "g:\"