- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个文件路径 string filePath = @"C:\MyDir\MySubDir\myfile.ext";
和另一个文件名 string file2 = "otherfile.txt"
.假设我想获取另一个文件路径 string filePath2 = @"C:\MyDir\MySubDir\otherfile.txt";
。
C# 中有创建这样的 filePath2 的方法吗?
Java 中的方法是
Path resolveSibling(Path other)
Resolves the given path against this path's parent path. This is useful where a file name needs to be replaced with another file name. For example, suppose that the name separator is "/" and a path represents "dir1/dir2/foo", then invoking this method with the Path "bar" will result in the Path "dir1/dir2/bar".
最佳答案
像这样(组合第一个文件的目录名和第二个文件名):
string filePath = @"C:\MyDir\MySubDir\myfile.ext";
string file2 = "otherfile.txt";
// C:\MyDir\MySubDir\otherfile.txt
string result = Path.Combine(Path.GetDirectoryName(filePath), file2);
关于java - 短 c#'s alternative to Java' s Path.ResolveSibling。不可能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36885285/
本文整理了Java中com.android.tools.build.bundletool.model.ZipPath.resolveSibling()方法的一些代码示例,展示了ZipPath.reso
我有一个文件路径 string filePath = @"C:\MyDir\MySubDir\myfile.ext"; 和另一个文件名 string file2 = "otherfile.txt" .
我是一名优秀的程序员,十分优秀!