Windows CMD:从绝对路径获取相对路径
如何从绝对路径获取相对路径,例如将“C:\absolute\path\file.ext”转换为“path”?
感谢您的考虑
编辑:我想递归扫描目录中的某种文件类型,然后为包含此文件类型的这些文件夹创建符号链接。符号链接的命名应类似于包含文件类型的目录。
How do i obtain the relative path from an absolute path, e.g. convert 'C:\absolute\path\file.ext' to 'path'?
Thanks for your consideration
edit: i'd like to recursivly scan a directory for a certain filetype and then create symlinks for these folders containing this filetype. the symlinks should be named like the directory containing the filetype.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个功能有效
DosTips.com :MakeRelative
它比较两个路径并删除相同的前面。
然后它为每个不匹配的部分添加“..\”。
This function works
DosTips.com :MakeRelative
It compares both pathes and removes the identical front.
Then it adds "..\" for each non matching part.