Complete List of forbidden file and folder names for windows

后端 未结 3 691
囚心锁ツ
囚心锁ツ 2021-01-05 08:49

On Windows file names like com1.txt or lpt1.txt are forbidden. Is there a list of all forbidden file and folder names on windows (or forbidden chars in the file and folder n

3条回答
  •  既然无缘
    2021-01-05 09:27

    You didn't mention what platform you are using, but in .Net, you can use:

    System.IO.Path.GetInvalidFileNameChars
    

    and

    System.IO.Path.GetInvalidPathChars
    

    To return invalid file name and path characters.

提交回复
热议问题