http://bugs.winehq.org/show_bug.cgi?id=4309
Janne janne.kekkonen@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |janne.kekkonen@gmail.com
--- Comment #9 from Janne janne.kekkonen@gmail.com --- Tested on Windows 11.
Directory named "..." cannot be created.
E:\temp>ver
Microsoft Windows [Version 10.0.26100.6584]
E:\temp>mkdir ... A subdirectory or file ... already exists.
E:\temp>mkdir "..." A subdirectory or file ... already exists.
E:\temp>
If directory name being created has one or more "." as last character(s). They will be omitted from directory name.
E:\temp>ver
Microsoft Windows [Version 10.0.26100.6584]
E:\temp>dir /b
E:\temp>mkdir test.
E:\temp>mkdir test2..
E:\temp>mkdir test3...
E:\temp>dir /b test test2 test3
E:\temp>