本文整理汇总了C#中Sharpen.FilePath.GetAbsoluteFile方法的典型用法代码示例。如果您正苦于以下问题:C# FilePath.GetAbsoluteFile方法的具体用法?C# FilePath.GetAbsoluteFile怎么用?C# FilePath.GetAbsoluteFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sharpen.FilePath
的用法示例。
在下文中一共展示了FilePath.GetAbsoluteFile方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Canonical
private static FilePath Canonical(FilePath path)
{
try
{
return path.GetCanonicalFile();
}
catch (IOException)
{
return path.GetAbsoluteFile();
}
}
示例2: Test30_stripWorkDir
public virtual void Test30_stripWorkDir()
{
FilePath relCwd = new FilePath(".");
FilePath absCwd = relCwd.GetAbsoluteFile();
FilePath absBase = new FilePath(new FilePath(absCwd, "repo"), "workdir");
FilePath relBase = new FilePath(new FilePath(relCwd, "repo"), "workdir");
NUnit.Framework.Assert.AreEqual(absBase.GetAbsolutePath(), relBase.GetAbsolutePath
());
FilePath relBaseFile = new FilePath(new FilePath(relBase, "other"), "module.c");
FilePath absBaseFile = new FilePath(new FilePath(absBase, "other"), "module.c");
NUnit.Framework.Assert.AreEqual("other/module.c", Repository.StripWorkDir(relBase
, relBaseFile));
NUnit.Framework.Assert.AreEqual("other/module.c", Repository.StripWorkDir(relBase
, absBaseFile));
NUnit.Framework.Assert.AreEqual("other/module.c", Repository.StripWorkDir(absBase
, relBaseFile));
NUnit.Framework.Assert.AreEqual("other/module.c", Repository.StripWorkDir(absBase
, absBaseFile));
FilePath relNonFile = new FilePath(new FilePath(relCwd, "not-repo"), ".gitignore"
);
FilePath absNonFile = new FilePath(new FilePath(absCwd, "not-repo"), ".gitignore"
);
NUnit.Framework.Assert.AreEqual(string.Empty, Repository.StripWorkDir(relBase, relNonFile
));
NUnit.Framework.Assert.AreEqual(string.Empty, Repository.StripWorkDir(absBase, absNonFile
));
NUnit.Framework.Assert.AreEqual(string.Empty, Repository.StripWorkDir(db.WorkTree
, db.WorkTree));
FilePath file = new FilePath(new FilePath(db.WorkTree, "subdir"), "File.java");
NUnit.Framework.Assert.AreEqual("subdir/File.java", Repository.StripWorkDir(db.WorkTree
, file));
}
示例3: CreateRequire
/// <exception cref="Sharpen.URISyntaxException"></exception>
private static Require CreateRequire(FilePath dir, Context cx, Scriptable scope)
{
return new Require(cx, scope, new StrongCachingModuleScriptProvider(new UrlModuleSourceProvider(Collections.Singleton(dir.GetAbsoluteFile().ToURI()), Collections.Singleton(new Uri(typeof(ComplianceTest).GetResource(".").ToExternalForm() + "/")))), null, null, false);
}