本文整理汇总了C#中SiliconStudio.Core.IO.UFile.GetDirectoryAndFileName方法的典型用法代码示例。如果您正苦于以下问题:C# UFile.GetDirectoryAndFileName方法的具体用法?C# UFile.GetDirectoryAndFileName怎么用?C# UFile.GetDirectoryAndFileName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SiliconStudio.Core.IO.UFile
的用法示例。
在下文中一共展示了UFile.GetDirectoryAndFileName方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AssetFileChangedEvent
/// <summary>
/// Initializes a new instance of the <see cref="AssetFileChangedEvent"/> class.
/// </summary>
/// <param name="package">The package.</param>
/// <param name="changeType">Type of the change.</param>
/// <param name="assetLocation">The asset URL.</param>
public AssetFileChangedEvent(Package package, AssetFileChangedType changeType, UFile assetLocation)
{
Package = package;
ChangeType = changeType;
AssetLocation = assetLocation.GetDirectoryAndFileName(); // Make sure we are using the location withint the package without the extension
}
示例2: TestWithNormalization
public void TestWithNormalization()
{
var assetPath = new UFile("/a/b/.././././//c.txt");
Assert.AreEqual("/a", assetPath.GetDirectory());
Assert.AreEqual("c", assetPath.GetFileName());
Assert.AreEqual(".txt", assetPath.GetFileExtension());
Assert.AreEqual("/a/c", assetPath.GetDirectoryAndFileName());
Assert.AreEqual("/a/c.txt", assetPath.FullPath);
assetPath = new UFile("../.././././//c.txt");
Assert.AreEqual("../..", assetPath.GetDirectory());
Assert.AreEqual("c", assetPath.GetFileName());
Assert.AreEqual(".txt", assetPath.GetFileExtension());
Assert.AreEqual("../../c", assetPath.GetDirectoryAndFileName());
Assert.AreEqual("../../c.txt", assetPath.FullPath);
assetPath = new UFile("a/../../../c.txt");
Assert.AreEqual("../../c.txt", assetPath.FullPath);
}
示例3: TestEquals
public void TestEquals()
{
var assetPath1 = new UFile(null);
var assetPath2 = new UFile(null);
Assert.AreEqual(assetPath1, assetPath2);
assetPath1 = new UFile("/a/b/c.txt");
assetPath2 = new UFile("/a/b/d/../c.txt");
Assert.AreEqual(assetPath1, assetPath2);
// Test is not done on Extensions
assetPath1 = new UFile("/a/b/c.txt");
assetPath2 = new UFile("/a/b/d/../c.png");
Assert.AreNotEqual(assetPath1, assetPath2);
Assert.AreEqual(assetPath1.GetDirectoryAndFileName(), assetPath2.GetDirectoryAndFileName());
}
示例4: TestWithSimplePathWithExtension
public void TestWithSimplePathWithExtension()
{
var assetPath = new UFile("/a/b/c.txt");
Assert.AreEqual("/a/b", assetPath.GetDirectory());
Assert.AreEqual("c", assetPath.GetFileName());
Assert.AreEqual(".txt", assetPath.GetFileExtension());
Assert.AreEqual("/a/b/c", assetPath.GetDirectoryAndFileName());
Assert.AreEqual("/a/b/c.txt", assetPath.FullPath);
}