> Ok, I may summarise the result of Bernhards investigation. It's not the
> length of the path and even the spaces seem ok, but there is an issue
> with "funny characters" on Windows path names (ie. a path e.g. with an ö
> like in Eröffnungen is broken.)
>
> cu
> Alexander
I don't suppose
On 02/22/11 20:55, Bernhard Rulla wrote:
Hi!
> Can it be that there is a maximum allowed path length?
>
> When I try to open a file from
> C:\Users\Rulla\Bernis Dateien\Schach\Eroeffnungen\A57-A59 Wolgagambit
>
> I get the error message "Error opening index file".
>
> When I open the same file fr
Hmmm.. most apps use MAX_PATH or PATH_MAX, but Scid
seems to use "512", so filename length is probably not the problem.
src/common.h:
--
// File-related Types
typedef char fileNameT [512];
typedef uintfileLengthT;
--
> Can it be that there is a maximum allowed path length?
>
> When I try to open a file from
> C:\Users\Rulla\Bernis Dateien\Schach\Eroeffnungen\A57-A59 Wolgagambit
>
> I get the error message "Error opening index file".
>
> When I open the same file from
> C:\Users\Rulla\Desktop\Schach
>
Can it be that there is a maximum allowed path length?
When I try to open a file from
C:\Users\Rulla\Bernis Dateien\Schach\Eroeffnungen\A57-A59 Wolgagambit
I get the error message "Error opening index file".
When I open the same file from
C:\Users\Rulla\Desktop\Schach
... no problem!
-