why we can not use any special character (?, <..) in windows File name ?
A:
Fundamental rules for for Universal Naming Convention (UNC),which enable applications to create and process valid names for files and directories, regardless of the file system:
following reserved characters:
* < (less than)
* > (greater than)
* : (colon)
* " (double quote)
* / (forward slash)
* \ (backslash)
* | (vertical bar or pipe)
* ? (question mark)
* * (asterisk)
Use any character in the current code page for a name, including Unicode characters and characters in the extended character set (128–255),
Sudantha
2010-10-28 05:37:04
+2
A:
Because they have special meanings in filesystem:
C:*.? - get all files with single letter extensions from C drive
: \ * ? - all have special meanings
Riho
2010-10-28 05:37:11
A:
Since some character are Reserved characters in some operating system,say ? is used as wildcard,/ as path name component separator.
Adhavan
2010-10-28 05:41:47