• TimeSquirrel@kbin.social
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    Also, you cannot create a file named “con” in Windows, even in the latest versions. It’s a holdover from DOS where that word was reserved for the console. For example, you could type “copy con file.txt” to quickly create a text file from the command line and start entering text.

    • dan@upvote.au
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      1 year ago

      There’s another interesting fact here: MS-DOS 1.0 didn’t have directories… To print a text file, you could just do TYPE foo.txt > LPT1, since LPT1 wasn’t in a directory (like /dev on Linux).

      MS-DOS 2.0 added directories. However, to remain backwards compatible with 1.0, devices were still “global”. You could still run TYPE foo.txt > LPT1 regardless of which directory you were in.

      This is why you can’t create files names CON, LPT1, etc. in Windows. They’re reserved globally, which is a holdover from the original MS-DOS version from 1983.