G Guest Sep 5, 2007 #1 tried to create a folder in Windows XP but unable to do that. Whats the reason behind that
G Guest Sep 5, 2007 #2 Believe you can't name a folder with the same name as a port on the computer, including: CON, LPT1, COM1 (2,3,4), AUX etc. for certain commands, the OS may be confused with outputting to a folder vs to a port. CON is for "console".
Believe you can't name a folder with the same name as a port on the computer, including: CON, LPT1, COM1 (2,3,4), AUX etc. for certain commands, the OS may be confused with outputting to a folder vs to a port. CON is for "console".
G Guest Sep 5, 2007 #3 Thanks Frank. FrankChin said: Believe you can't name a folder with the same name as a port on the computer, including: CON, LPT1, COM1 (2,3,4), AUX etc. for certain commands, the OS may be confused with outputting to a folder vs to a port. CON is for "console". Click to expand...
Thanks Frank. FrankChin said: Believe you can't name a folder with the same name as a port on the computer, including: CON, LPT1, COM1 (2,3,4), AUX etc. for certain commands, the OS may be confused with outputting to a folder vs to a port. CON is for "console". Click to expand...
K Ken Blake, MVP Sep 5, 2007 #4 tried to create a folder in Windows XP but unable to do that. Whats the reason behind that Click to expand... Since the earliest days of DOS, "con" has been a reserved word (it stands for "console") and is unavailable for naming anything.
tried to create a folder in Windows XP but unable to do that. Whats the reason behind that Click to expand... Since the earliest days of DOS, "con" has been a reserved word (it stands for "console") and is unavailable for naming anything.
G Guest Sep 5, 2007 #5 you could press alt+255 after you type the last letter in con then enter to apply the change -- db ·´¯`·.¸. said: <)))º>·´¯`·.¸. , . .·´¯`·.. ><)))º>`·.¸¸.·´¯`·.¸.·´¯`·...¸><)))º> Click to expand... ..
you could press alt+255 after you type the last letter in con then enter to apply the change -- db ·´¯`·.¸. said: <)))º>·´¯`·.¸. , . .·´¯`·.. ><)))º>`·.¸¸.·´¯`·.¸.·´¯`·...¸><)))º> Click to expand... ..
B Bert Hyman Sep 5, 2007 #6 (e-mail address removed) (=?Utf-8?B?RnJhbmtDaGlu?=) wrote in Believe you can't name a folder with the same name as a port on the computer, including: CON, LPT1, COM1 (2,3,4), AUX etc. for certain commands, the OS may be confused with outputting to a folder vs to a port. CON is for "console". Click to expand... Yes; from the command line, try copy somefile.txt CON Click to expand... Still, you can create a directory by that name like this: mkdir c:\con\ rmdir c:\con\ Click to expand... .... etc. You need the trailing "\". Don't know what happens when you try to use it though.
(e-mail address removed) (=?Utf-8?B?RnJhbmtDaGlu?=) wrote in Believe you can't name a folder with the same name as a port on the computer, including: CON, LPT1, COM1 (2,3,4), AUX etc. for certain commands, the OS may be confused with outputting to a folder vs to a port. CON is for "console". Click to expand... Yes; from the command line, try copy somefile.txt CON Click to expand... Still, you can create a directory by that name like this: mkdir c:\con\ rmdir c:\con\ Click to expand... .... etc. You need the trailing "\". Don't know what happens when you try to use it though.