Hello,
search result is null,
because of :the path contain null characters;
please tell me , how to solve it。
thanks!
system:Windows10
path contain null characters,search result is null。
-
- Posts: 3
- Joined: Thu Jul 27, 2023 2:56 pm
path contain null characters,search result is null。
- Attachments
-
- Bugreport.zip
- (93.07 KiB) Downloaded 269 times
Re: path contain null characters,search result is null。
Post the path between double quotes:
Code: Select all
"BOM 更新 2021-08-22"
Re: path contain null characters,search result is null。
Are these in fact "null" ($00$, not NotNull) characters in the pathname?
I don't seem to need quotes, & do see expected results on my end?
On my end, on extraction (with 7-zip) I'm seeing spaces ($20$) in the pathnames.
(unzip won't "correctly" extract the "unicode" part of the name.)
I don't seem to need quotes, & do see expected results on my end?
C:\TMP\BRU\ä,ö,ü,ß\ä,ö,ü,ß\X\hi there ä,ö,ü,ß you swine\Bugreport\Bugreport\BOM 更新 2021-08-22\
On my end, on extraction (with 7-zip) I'm seeing spaces ($20$) in the pathnames.
(unzip won't "correctly" extract the "unicode" part of the name.)
-
- Posts: 3
- Joined: Thu Jul 27, 2023 2:56 pm
Re: path contain null characters,search result is null。
hello :
(unzip won't "correctly" extract the "unicode" part of the name.)
===>> maybe because of the folder name contains chinese characters ; ===>> I have change the folder name to english characters ;
===>> please try it
===>> thanks
(unzip won't "correctly" extract the "unicode" part of the name.)
===>> maybe because of the folder name contains chinese characters ; ===>> I have change the folder name to english characters ;
===>> please try it
===>> thanks
- Attachments
-
- Bugreport.zip
- (92.66 KiB) Downloaded 277 times
Re: path contain null characters,search result is null。
These are spaces, not NULL characters.
A space in your search means AND
Everything sees the search:
C:\Users\Claire\Desktop\ssd\BOM 更新 2021-08-22\
as:
C:\Users\Claire\Desktop\ssd\BOM AND 更新 AND 2021-08-22\
(this will likely not match anything)
Please use double quotes (") to escape spaces
"C:\Users\Claire\Desktop\ssd\BOM 更新 2021-08-22\"
-or-
Enable Search -> Match Path and search for:
C:\Users\Claire\Desktop\ssd\BOM 更新 2021-08-22\
A space in your search means AND
Everything sees the search:
C:\Users\Claire\Desktop\ssd\BOM 更新 2021-08-22\
as:
C:\Users\Claire\Desktop\ssd\BOM AND 更新 AND 2021-08-22\
(this will likely not match anything)
Please use double quotes (") to escape spaces
"C:\Users\Claire\Desktop\ssd\BOM 更新 2021-08-22\"
-or-
Enable Search -> Match Path and search for:
C:\Users\Claire\Desktop\ssd\BOM 更新 2021-08-22\
-
- Posts: 3
- Joined: Thu Jul 27, 2023 2:56 pm
Re: path contain null characters,search result is null。
the path null characters is use keyboard space key input
Re: path contain null characters,search result is null。
Ah, I had (match) PATH enabled, & that is the reason it "worked" for me.I don't seem to need quotes, & do see expected results on my end?
(Disable that, & then I'd also need quotes.)