I have many removable disk,and every removable disk I made a efu,
for example
removable disk 1.efu
removable disk 2.efu
removable disk 3.efu
Sometime,I want to find files that only in local disk,and I don't want to remove the file lists in everything options
so how to make a filter that can filter the files from all efu or from just removable disk 1.efu
how to make a filter that can filter the files from efu
Re: how to make a filter that can filter the files from efu
One way to do this is by specifying just the drive letters:
For example, a Local Disks filter:
Where C: and D: are your local disks.
For example, a Removable Disks filter:
Where E:, F: and G: are your removable disks.
For example, a Local Disks filter:
Code: Select all
<C:|D:>
For example, a Removable Disks filter:
Code: Select all
<E:|F:|G:>
Re: how to make a filter that can filter the files from efu
I have c: d: e: f: as a local disks, and every removable disks is G: (I don't plug two Removable Disks at the same time,and every removable disk has only one Partition) so it don't Meet my requirementsvoid wrote:One way to do this is by specifying just the drive letters:
For example, a Local Disks filter:Where C: and D: are your local disks.Code: Select all
<C:|D:>
For example, a Removable Disks filter:Where E:, F: and G: are your removable disks.Code: Select all
<E:|F:|G:>
I have 20 Removable Disks,and have 20 file lists ,I think it will be nice if there is a search syntax that can filter Specific efu from 20 efu.
thank you david
Re: how to make a filter that can filter the files from efu
There is currently not a simple clean way to do this.
You might be able to do something with the fsi (File System Index) search option.
Please try:
Where x is the zero based index of the index.
for example, if you have have the NTFS indexes c: d: e: and f, then to search for the NTFS volumes you would search for:
Your filelists would start at fsi:4 and continue on to fsi:23 for the 20 filelist you have included in the index.
To search for just these, you could use:
I have added to my "things to do" list the ability to search by the filelist source filename.
You might be able to do something with the fsi (File System Index) search option.
Please try:
Code: Select all
fsi:x
for example, if you have have the NTFS indexes c: d: e: and f, then to search for the NTFS volumes you would search for:
Code: Select all
<fsi:0|fsi:1|fsi:2|fsi:3>
To search for just these, you could use:
Code: Select all
<fsi:4|fsi:5|fsi:6|fsi:7|fsi:8|fsi:9|fsi:10|fsi:11|fsi:12|fsi:13|fsi:14|fsi:15|fsi:16|fsi:17|fsi:18|fsi:19|fsi:20|fsi:21|fsi:22|fsi:23>
-
- Posts: 9
- Joined: Wed May 11, 2016 11:17 am
Re: how to make a filter that can filter the files from efu
Hi void,
i have the same requirement.
I use a lot of external Disks that, if they are connected, are mounted in a folder like
C:\ExternalDisk\1
C:\ExternalDisk\2
C:\ExternalDisk\3
and so on. I have an EFU File for each Disk and if i connect a Disk, all findings are counted twice.
If i exclude the C:\externalDisk Path, the disc AND the EFU File results are excluded.
Do you found a solution in the meantime?
Thanks in advance
i have the same requirement.
I use a lot of external Disks that, if they are connected, are mounted in a folder like
C:\ExternalDisk\1
C:\ExternalDisk\2
C:\ExternalDisk\3
and so on. I have an EFU File for each Disk and if i connect a Disk, all findings are counted twice.
If i exclude the C:\externalDisk Path, the disc AND the EFU File results are excluded.
Do you found a solution in the meantime?
Thanks in advance
Re: how to make a filter that can filter the files from efu
To exclude filelists from your results, please include the following in your Search:
!filelistfilename:.
To add this as a filter:
To avoid the duplicates, please try disabling automatically include new volumes:
!filelistfilename:.
To add this as a filter:
- In Everything, from the Search menu, click Add to filters....
- Change the Name to: Not Filelists
- Change the Search to: !filelistfilename:.
- Click OK.
To avoid the duplicates, please try disabling automatically include new volumes:
- In Everything, from the Tools menu, click Options.
- Click the NTFS tab on the left.
- Uncheck Automatically include new fixed volumes.
- Uncheck Automatically include new removable volumes.
- Click the ReFS tab on the left.
- Uncheck Automatically include new fixed volumes.
- Uncheck Automatically include new removable volumes.
- Click OK.
-
- Posts: 9
- Joined: Wed May 11, 2016 11:17 am
Re: how to make a filter that can filter the files from efu
Works perfect. Thanks a lot.