Given that the file system is virtual, and as I understand fairly independent of the underlying system, it would seam it's possible to set a custom directory separator.
I have a usecase.
I develop an application that's supposed to work both on windows and Unix, so I need to write tests for / as separator and \ as well. In order to test it, I run two docker containers, one based on debian, one on windows.
If vfsStream supported both kinds of separators, I could test all my code without need for docker at all.
Given that the file system is virtual, and as I understand fairly independent of the underlying system, it would seam it's possible to set a custom directory separator.
I have a usecase.
I develop an application that's supposed to work both on windows and Unix, so I need to write tests for
/as separator and\as well. In order to test it, I run two docker containers, one based on debian, one on windows.If vfsStream supported both kinds of separators, I could test all my code without need for docker at all.