我正在使用emacs在
Windows上尝试一些东西.在我的情况下,我需要从elisp返回反斜杠的文件路径.但是elisp总是以斜线等方式返回路径.
(expand-file-name "text.log" "d:\\ProgramData\\temp") => d:/ProgramData/temp/text.log
我的要求:
(expand-file-name "text.log" "d:\\ProgramData\\temp") => d:\ProgramData\temp\text.log
它可以用regexp完成,但我需要更简单的方法.
(elisp)标准文件名中的convert-standard-filename是否符合您的需要?
原文链接:https://www.f2er.com/windows/364293.html