C# WinForms 路径拼接:使用 Path.Combine() 方法
在 C# 中拼接路径可以使用 Path.Combine() 方法,该方法会自动处理路径分隔符的问题。
例如,如果想要拼接 'C:\Users' 和 'john' 两个路径,可以使用以下代码:
string path1 = "C:\Users";
string path2 = "john";
string combinedPath = Path.Combine(path1, path2);
结果会是 'C:\Users\john'。注意,路径分隔符要使用 '' 转义。
原文地址: https://www.cveoy.top/t/topic/gQj3 著作权归作者所有。请勿转载和采集!