当前位置: 首页>>代码示例>>C#>>正文


C# Path.Combine方法代码示例

本文整理汇总了C#中System.IO.Path.Combine方法的典型用法代码示例。如果您正苦于以下问题:C# Path.Combine方法的具体用法?C# Path.Combine怎么用?C# Path.Combine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.IO.Path的用法示例。


在下文中一共展示了Path.Combine方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1:

string[] paths = {@"d:\archives", "2001", "media", "images"};
string fullPath = Path.Combine(paths);
Console.WriteLine(fullPath);
开发者ID:.NET开发者,项目名称:System.IO,代码行数:3,代码来源:Path.Combine

示例2:

string[] paths = {@"d:\archives", "2001", "media", "images"};
string fullPath = Path.Combine(paths);
Console.WriteLine(fullPath);            

paths = new string[] {@"d:\archives\", @"2001\", "media", "images"};
fullPath = Path.Combine(paths);
Console.WriteLine(fullPath); 

paths = new string[] {"d:/archives/", "2001/", "media", "images"};
fullPath = Path.Combine(paths);
Console.WriteLine(fullPath);
开发者ID:.NET开发者,项目名称:System.IO,代码行数:11,代码来源:Path.Combine

输出:

d:\archives\2001\media\images
d:\archives\2001\media\images
d:/archives/2001/media\images

The example displays the following output if run on a Unix-based system:
d:\archives/2001/media/images
d:\archives\/2001\/media/images
d:/archives/2001/media/images

示例3: Main

//引入命名空间
using System;
using System.IO;

public class ChangeExtensionTest {

    public static void Main() {

        string path1 = "c:\\temp";
        string path2 = "subdir\\file.txt";
        string path3 = "c:\\temp.txt";
        string path4 = "c:^*&)(_=@#'\\^&#2.*(.txt";
        string path5 = "";
        string path6 = null;

        CombinePaths(path1, path2);
        CombinePaths(path1, path3);
        CombinePaths(path3, path2);
        CombinePaths(path4, path2);
        CombinePaths(path5, path2);
        CombinePaths(path6, path2);
    }

    private static void CombinePaths(string p1, string p2) {

        try {
            string combination = Path.Combine(p1, p2);

            Console.WriteLine("When you combine '{0}' and '{1}', the result is: {2}'{3}'",
                        p1, p2, Environment.NewLine, combination);
        } catch (Exception e) {
            if (p1 == null)
                p1 = "null";
            if (p2 == null)
                p2 = "null";
            Console.WriteLine("You cannot combine '{0}' and '{1}' because: {2}{3}",
                        p1, p2, Environment.NewLine, e.Message);
        }

        Console.WriteLine();
    }
}
开发者ID:.NET开发者,项目名称:System.IO,代码行数:42,代码来源:Path.Combine

输出:

When you combine 'c:\temp' and 'subdir\file.txt', the result is: 
'c:\temp\subdir\file.txt'

When you combine 'c:\temp' and 'c:\temp.txt', the result is: 
'c:\temp.txt'

When you combine 'c:\temp.txt' and 'subdir\file.txt', the result is: 
'c:\temp.txt\subdir\file.txt'

When you combine 'c:^*&)(_=@#'\^.*(.txt' and 'subdir\file.txt', the result is: 
'c:^*&)(_=@#'\^.*(.txt\subdir\file.txt'

When you combine '' and 'subdir\file.txt', the result is: 
'subdir\file.txt'

You cannot combine '' and 'subdir\file.txt' because: 
Value cannot be null.
Parameter name: path1

示例4:

string p1 = @"d:\archives\";
string p2 = "media";
string p3 = "images";
string combined = Path.Combine(p1, p2, p3);
Console.WriteLine(combined);
开发者ID:.NET开发者,项目名称:System.IO,代码行数:5,代码来源:Path.Combine

示例5:

string path1 = @"d:\archives\";
string path2 = "2001";
string path3 = "media";
string path4 = "images";
string combinedPath = Path.Combine(path1, path2, path3, path4);
Console.WriteLine(combinedPath);
开发者ID:.NET开发者,项目名称:System.IO,代码行数:6,代码来源:Path.Combine


注:本文中的System.IO.Path.Combine方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。