最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C#絕對(duì)路徑拼接相對(duì)路徑的實(shí)例代碼

 更新時(shí)間:2013年03月18日 11:15:27   作者:  
C#絕對(duì)路徑拼接相對(duì)路徑的實(shí)例代碼,需要的朋友可以參考一下

做項(xiàng)目時(shí)發(fā)現(xiàn)Path.Combine方法只能支持傻瓜式的目錄拼接

復(fù)制代碼 代碼如下:

//絕對(duì)路徑
string absolutePath = @"C:\Program Files\Internet Explorer";
//相對(duì)路徑
string relativePath = @"..\TestPath\";
//預(yù)計(jì)拼接結(jié)果
string splicingResult = string.Empty;
Console.WriteLine(string.Format("Path.Combine(\"{0}\",\"{1}\")=\"{2}\"", absolutePath, relativePath, Path.Combine(absolutePath, relativePath)));

輸出結(jié)果為:

發(fā)現(xiàn)并沒(méi)有按照想像的分辨出相對(duì)路徑和絕對(duì)路徑,所以只好用正則匹配了相對(duì)路徑進(jìn)行重新拼接,以下方法只支持絕對(duì)路徑+相對(duì)路徑的方式

//絕對(duì)路徑
string absolutePath = @"C:\Program Files\Internet Explorer";
//相對(duì)路徑
string relativePath = @"..\TestPath\";
//預(yù)計(jì)拼接結(jié)果
string splicingResult = string.Empty;
Console.WriteLine(string.Format("Path.Combine(\"{0}\",\"{1}\")=\"{2}\"", absolutePath, relativePath, Path.Combine(absolutePath, relativePath)));
if (!Path.IsPathRooted(relativePath))
{
    //匹配相對(duì)路徑,匹配需要向上推的目錄層數(shù)
    Regex regex = new Regex(@"^\\|([..]+)");
    int backUp = regex.Matches(relativePath).Count;
    List<string> pathes = absolutePath.Split("\\".ToCharArray()).ToList();
    pathes.RemoveRange(pathes.Count - backUp, backUp);
    //匹配文件名,匹配需要附加的目錄層數(shù)
    regex = new Regex(@"^\\|([a-zA-Z0-9]+)");
    MatchCollection matches = regex.Matches(relativePath);
    foreach (Match match in matches)
    {
        pathes.Add(match.Value);
    }
    //驅(qū)動(dòng)器地址取絕對(duì)路徑中的驅(qū)動(dòng)器地址
    pathes[0] = Path.GetPathRoot(absolutePath);
    foreach (string p in pathes)
    {
        splicingResult = Path.Combine(splicingResult, p);
    }
}
Console.WriteLine(string.Format("Absolute Path={0}",absolutePath));
Console.WriteLine(string.Format("Relative Path={0}", relativePath));
Console.WriteLine(string.Format("Path.Combine(\"{0}\",\"{1}\")=\"{2}\"", absolutePath, relativePath, splicingResult));
Console.ReadLine();

輸出結(jié)果:

相關(guān)文章

最新評(píng)論

东明县| 天气| 简阳市| 卫辉市| 河间市| 祁东县| 安徽省| 贺兰县| 五华县| 金秀| 宁海县| 乐陵市| 富川| 郎溪县| 安泽县| 西安市| 宁陵县| 北安市| 南通市| 裕民县| 鸡泽县| 天津市| 汨罗市| 望都县| 黄冈市| 维西| 贡嘎县| 汶上县| 翼城县| 大姚县| 忻城县| 五莲县| 即墨市| 离岛区| 平阳县| 保靖县| 镇远县| 通道| 浮梁县| 墨竹工卡县| 肥东县|