We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
v 1.8 app release.
We had a user who was getting zero-length files when she named the individual steps in a protocol with a colon. (i.e. 1:1, 1:2, etc.)
We should validate all user-requested filenames to make sure that they are legal.
https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file
There's also a good list here towards the bottom: https://stackoverflow.com/questions/1976007/what-characters-are-forbidden-in-windows-and-linux-directory-names
The text was updated successfully, but these errors were encountered:
actually that list at the end has a lot of perfectly valid characters in it...
Maybe just this:
find . -name '[\:*?"<>|]'
We should probably also check to make sure it won't go over 256 characters in the total path, if that is possible/easy.
Sorry, something went wrong.
Needs verification on the feature/imagej branch.
feature/imagej
jmcoreymv
No branches or pull requests
v 1.8 app release.
We had a user who was getting zero-length files when she named the individual steps in a protocol with a colon. (i.e. 1:1, 1:2, etc.)
We should validate all user-requested filenames to make sure that they are legal.
https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file
There's also a good list here towards the bottom:
https://stackoverflow.com/questions/1976007/what-characters-are-forbidden-in-windows-and-linux-directory-names
The text was updated successfully, but these errors were encountered: