2015-08-24 13:34 GMT+02:00 Henrik Johansen <henrik.s.johansen@veloxit.no>:On 23 Aug 2015, at 6:09 , Nicolai Hess <nicolaihess@web.de> wrote:And If you want to review the changes:
https://github.com/nicolaihess/pharo-vm/compare/master...nicolaihess:win-long-filename2015-08-23 13:44 GMT+02:00 Nicolai Hess <nicolaihess@web.de>:Please test other file/folder operations.for the file permissions (the stat-functions don't work for files with long paths).This wasn't as easy as I thought, and I had to make some more changesFor those who had problems with pharo on windows and github based repositories,I built a windows vm with support for long paths:
https://drive.google.com/file/d/0B8yEahnuIem2bmxwdzJuUXFxVGM/view?usp=sharing
For browsing directories with large paths (FileList or Inspect),
you may need one additional change in the image (But I am not really sure about that) :DiskStore>>initializeplease test and give feedback.
������ super initialize.
������ maxFileNameLength := Smalltalk vm maxFilenameLength ifNil: [ 32767 ].- Is an alloca version really worth it for the potential problems?It is what Marcel used for the long path support in the squeak vm (I would have copy and paste the whole change, but I couldn't find the appropriate change for directory functions).��