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


C# UFile.GetDirectoryAndFileName方法代码示例

本文整理汇总了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
 }
开发者ID:cg123,项目名称:xenko,代码行数:12,代码来源:AssetFileChangedEvent.cs

示例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);
        }
开发者ID:Kryptos-FR,项目名称:xenko-reloaded,代码行数:19,代码来源:TestUPathOld.cs

示例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());
        }
开发者ID:Kryptos-FR,项目名称:xenko-reloaded,代码行数:16,代码来源:TestUPathOld.cs

示例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);
 }
开发者ID:Kryptos-FR,项目名称:xenko-reloaded,代码行数:9,代码来源:TestUPathOld.cs


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