Why does the 260 character path length limit exist in Windows?

后端 未结 11 966
孤城傲影
孤城傲影 2020-11-22 03:18

I have come up against this problem a few times at inopportune moments:

  • Trying to work on open source Java projects with deep paths
  • Storing deep Fitne
11条回答
  •  情歌与酒
    2020-11-22 03:55

    You can mount a folder as a drive. From the command line, if you have a path C:\path\to\long\folder you can map it to drive letter X: using:

    subst x: \path\to\long\folder
    

提交回复
热议问题