3
rated 0 times
[
3]
[
0]
/ answers: 1 / hits: 2271
/ 2 Years ago, fri, october 22, 2021, 12:40:09
I want to have a path in the filesystem that shows the entire contents of some other path, excluding a few certain files of my choosing. For example, if the following already exists,
original-path
├── file1
├── file2
├── file3
├── file4
├── folder1
│ ├── file1
│ └── file2
└── folder2
├── file1
└── file2
I want to be able to exclude /file1
, /folder1/file1
, and /folder2
from a new path that otherwise points to the same data:
new-path
├── file2
├── file3
├── file4
└── folder1
└── file2
How can I accomplish this? Some kind of bind mount, FUSE filesystem, or clever linking scheme?
More From » filesystem