Re: [Scid-users] Allowed path length

2011-02-28 Thread Steven
> 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

Re: [Scid-users] Allowed path length

2011-02-24 Thread Alexander Wagner
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

Re: [Scid-users] Allowed path length

2011-02-23 Thread Steven
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; --

Re: [Scid-users] Allowed path length

2011-02-22 Thread Steven
> 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 >

[Scid-users] Allowed path length

2011-02-22 Thread Bernhard Rulla
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! -