windows 属性对话框编码问题 The filename, directory name, or volume label syntax is incorrect.

背景:用 go 写个小程序,涉及到文件的读写,右键要打开的文件,打开属性面板,从面板里复制文件的决定路径到notepad++当中,结果程序,运行,提醒 The filename, directory name, or volume label syntax is incorrect. 错误。

windows 属性对话框编码问题 The filename, directory name, or volume label syntax is incorrect._第1张图片

小实验 ,新建一个文件,复制上边的绝对路径到 notepad++ 当中,然后将文件保存成 utf8 无 BOM 格式。

windows 属性对话框编码问题 The filename, directory name, or volume label syntax is incorrect._第2张图片

 

看起来一切正常。

等等,使用十六进制查看,

windows 属性对话框编码问题 The filename, directory name, or volume label syntax is incorrect._第3张图片

却突然发现,居然多了三个字节,暂时不明白原因,猜想可能与文件属性框的编码问题有关。但是,有时候复制过来又是正常的,很迷。(Windows 10 企业版)

解决办法:

1、将绝对路径拷贝到临时文件当中,将临时文件的编码方式改为 ANSI 编码,如果有问题,修改正确之后再拷贝到代码文件当中。

2、在代码文件中直接手写绝对路径,不要从文件属性面板中复制。

你可能感兴趣的:(go,python)