本文介绍了.NET路径操作库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有人知道任何好的库可以很好地抽象出路径操作问题吗?我希望能够使用任意的分隔符(例如'/'或':')来合并和解析路径,而无需重新设计轮子.
Does anyone know of any good library that abstracts the problem of path manipulation in a nice way? I'd like to be able to combine and parse paths with arbitrary separators ('/' or ':' for example) without reinventing the wheel.
System.IO.Path
不可重用是很可惜的.
It's a shame that System.IO.Path
isn't more reusable.
谢谢
推荐答案
检查Patrick的库以处理路径操作链接文本
Check Patrick's library to handle path operations link text
这是 codeplex项目
这篇关于.NET路径操作库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!