Hello, i'm using Everything-1.4.1.1022.x64 with Windows 10 Home 22H2 x64
I have some directory name with fullwidth slash /
But i can't see any search result when i want to search in the directory.
Result in normal directory
https://i.imgur.com/Cdljx6e.png
Result in directory with /
https://i.imgur.com/a59Fdza.png
How can i make everything work on these directories?
I have tried double quote "" but seems no use, thank you.
How to search in directory with fullwidth slash "/"
Re: How to search in directory with fullwidth slash "/"
Try turning off Search -> Match Diacritics for this search query.
I suspect this is a bug.
(@void: I'm also having trouble getting the diacritics: and !diacritics: and no-diacritics: verb to work in 1.5)
I suspect this is a bug.
(@void: I'm also having trouble getting the diacritics: and !diacritics: and no-diacritics: verb to work in 1.5)
Re: How to search in directory with fullwidth slash "/"
I'm on 1.5, but I would think it should "just work" in 1.4 too?
See if toggling diacritics makes any difference? (Search | Match Diacritics)
.
See if toggling diacritics makes any difference? (Search | Match Diacritics)
.
Re: How to search in directory with fullwidth slash "/"
Everything is taking a shortcut here to try and match your absolute path.
However, Everything ends up failing to match the existing folder as /is being treated as path separator.
Please try the following search:
path:startwith:"Z:\tc\AS/MR\"
(The path:startwith: overrides an absolute path lookup)
-or-
"Z:\tc\AS/MR"
(Leave the trailing slash out)
This will be fixed in Everything 1.5.
I see there's a few issues with Everything treating /as /, but not as a path separator.
I've made a note to remove this mapping for the next db version change.
However, Everything ends up failing to match the existing folder as /is being treated as path separator.
Please try the following search:
path:startwith:"Z:\tc\AS/MR\"
(The path:startwith: overrides an absolute path lookup)
-or-
"Z:\tc\AS/MR"
(Leave the trailing slash out)
This will be fixed in Everything 1.5.
What happens?(@void: I'm also having trouble getting the diacritics: and !diacritics: and no-diacritics: verb to work in 1.5)
I see there's a few issues with Everything treating /as /, but not as a path separator.
I've made a note to remove this mapping for the next db version change.
Re: How to search in directory with fullwidth slash "/"
path:startwith: seems work, thanks for your reply.void wrote: ↑Sat Nov 19, 2022 4:34 am Everything is taking a shortcut here to try and match your absolute path.
However, Everything ends up failing to match the existing folder as /is being treated as path separator.
Please try the following search:
path:startwith:"Z:\tc\AS/MR\"
(The path:startwith: overrides an absolute path lookup)