If you are experiencing problems with "Everything", post here for assistance.
sk2107
Posts: 324 Joined: Sun Aug 07, 2022 8:48 pm
Post
by sk2107 » Sun Nov 06, 2022 10:01 pm
Hello,
while reading list of folders from clarion, the path length results are limited to 260 characters even when I changed the definition of
FullPathFileName from 260 to any higher number , it still getting the first 260 characters only.
Everything_GetResult
index LONG
result GROUP
! FullPathFileName STRING(260) !The full path and file name of the result
FullPathFileName STRING(2260) !The full path and file name of the result
Regards
sk2107
Posts: 324 Joined: Sun Aug 07, 2022 8:48 pm
Post
by sk2107 » Sun Nov 06, 2022 10:34 pm
I am not so familiar with C but I think the case is from everything.cpp
typedef struct
{
char FullPathFileName[260];
Regards
void
Developer
Posts: 16683 Joined: Fri Oct 16, 2009 11:31 pm
Post
by void » Mon Nov 07, 2022 3:14 am
I've rebuilt the
clarion DLL to support 1024 characters.
Does this help?
sk2107
Posts: 324 Joined: Sun Aug 07, 2022 8:48 pm
Post
by sk2107 » Mon Nov 07, 2022 3:55 am
Thank you for your rapid response.
Sure it will help, but unfortunately I got this error while re-compiling my application with the new DLLs:
2022-11-07 06 36 53.jpg (20.82 KiB) Viewed 1717 times
And if it is possible to set it to 2048 just in case (otherwise it is OK)
Best regards
void
Developer
Posts: 16683 Joined: Fri Oct 16, 2009 11:31 pm
Post
by void » Mon Nov 07, 2022 4:19 am
It's been awhile since I've built a clarion lib...
I've rebuilt the
clarion DLL to support 2048 characters.
I've also used the Clarion LIBMAKER this time.
sk2107
Posts: 324 Joined: Sun Aug 07, 2022 8:48 pm
Post
by sk2107 » Mon Nov 07, 2022 8:35 am
It is perfect.
Thanks a lot With Best Regards.