将非 8dot3 目录路径的短名称扩展为长名称
在 Windows
上的 R
中,tempdir()
返回包含非 8dot3 目录名称
的短名称的路径。
如何将它们扩展为长名称?
使用纯 R 代码的答案是有利的,但是使用通过 system() 使用的众所周知的 shell 命令的答案也可以作为备份。
In R
on Windows
, tempdir()
returns a path that contains short names for non 8dot3 directory names
.
How do I expand those to long names?
An answer that uses pure R
code is favorable, but one that uses well-known shell commands used via system()
is fine as a backup.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
normalizePath 函数将将短名称变成长名称:
The normalizePath function will turn short names into long names: