-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Escape character for '/' as a directory seperator? #45
Comments
Currently this is not possible as spix simply splits the path at any '/' without the option for an escape character. The conversion from string to spix' path object happens here and would just need to deal with escape characters: spix/lib/src/Data/ItemPath.cpp Lines 21 to 32 in a88161b
And then one would also have to adapt the inverse conversion back to strings: spix/lib/src/Data/ItemPath.cpp Lines 49 to 61 in a88161b
Last but not least, the unit tests would have to be extended:
|
nice! |
With the existing implementation of TestServer.cpp, would it be possible to search for a path that contains a '/' without treating the '/' as a directory seperator? e.g. 'mainWindow/1/2' where '1/2' is the object to find
If not, what modifications could be done to the
existsAndVisible
function?The text was updated successfully, but these errors were encountered: