windows.rst
changeset 360 ddf042e3a518
parent 324 5dfdb1a97f34
child 361 633200cc03c3
--- a/windows.rst	Mon Mar 29 11:02:51 2010 +0300
+++ b/windows.rst	Wed Mar 31 18:16:15 2010 +0300
@@ -161,3 +161,26 @@
   main.cpl - Mouse and Keyboard Options
   control fonts - Fonts Folder
   control printers Printers Folder
+
+* Path.
+
+** Max path length.
+
+260 chars. Use MAX_PATH macros from 'windows.h'.
+
+** Allowed characters.
+
+Not allowed:
+ * characters from 0 to 31
+ * < (less than)
+ * > (greater than)
+ * : (colon)
+ * " (double quote)
+ * / (forward slash)
+ * \ (backslash)
+ * | (vertical bar or pipe)
+ * ? (question mark)
+ * * (asterisk)
+
+  http://msdn.microsoft.com/en-us/library/aa365247.aspx
+                Naming Files, Paths, and Namespaces