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


C# Pri.LongPath.DirectoryInfo.Create方法代码示例

本文整理汇总了C#中Pri.LongPath.DirectoryInfo.Create方法的典型用法代码示例。如果您正苦于以下问题:C# Pri.LongPath.DirectoryInfo.Create方法的具体用法?C# Pri.LongPath.DirectoryInfo.Create怎么用?C# Pri.LongPath.DirectoryInfo.Create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Pri.LongPath.DirectoryInfo的用法示例。


在下文中一共展示了Pri.LongPath.DirectoryInfo.Create方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: TestCreateWithFileSecurity

 public void TestCreateWithFileSecurity()
 {
     var tempLongPathFilename = Path.Combine(uncDirectory, Path.GetRandomFileName());
     var di = new DirectoryInfo(tempLongPathFilename);
     try
     {
         di.Create(new DirectorySecurity());
         Assert.IsTrue(Directory.Exists(tempLongPathFilename));
     }
     finally
     {
         di.Delete();
     }
 }
开发者ID:KsWare,项目名称:LongPath,代码行数:14,代码来源:UncDirectoryInfoTests.cs

示例2: TestReplaceIgnoreMergeWithReadonlyBackupPath

        public void TestReplaceIgnoreMergeWithReadonlyBackupPath()
        {
            var tempLongPathFilename = new StringBuilder(longPathDirectory).Append(@"\").Append("filename.ext").ToString();
            var tempBackupPathName = new StringBuilder(longPathDirectory).Append(@"\readonly").ToString();
            var di = new DirectoryInfo(tempBackupPathName);
            di.Create();

            var attr = di.Attributes;
            di.Attributes = attr | FileAttributes.ReadOnly;
            var tempBackupLongPathFilename = new StringBuilder(tempBackupPathName).Append(@"\").Append("backup").ToString();
            using (var fileStream = File.Create(tempLongPathFilename))
            {
                fileStream.WriteByte(42);
            }
            var tempLongPathFilename2 = new StringBuilder(longPathDirectory).Append(@"\").Append("filename2.ext").ToString();

            using (var fileStream = File.Create(tempLongPathFilename2))
            {
                fileStream.WriteByte(52);
            }
            try
            {
                const bool ignoreMetadataErrors = true;
                File.Replace(tempLongPathFilename, tempLongPathFilename2, tempBackupLongPathFilename, ignoreMetadataErrors);
                using (var fileStream = File.OpenRead(tempLongPathFilename2))
                {
                    Assert.AreEqual(42, fileStream.ReadByte());
                }
                Assert.IsFalse(File.Exists(tempLongPathFilename));
                Assert.IsTrue(File.Exists(tempBackupLongPathFilename));
            }
            finally
            {
                di.Attributes = attr;
                if (File.Exists(tempLongPathFilename))
                    File.Delete(tempLongPathFilename);
                File.Delete(tempLongPathFilename2);
                File.Delete(tempBackupLongPathFilename);
            }
        }
开发者ID:jerriclynsjohn,项目名称:LongPath,代码行数:40,代码来源:FileTests.cs

示例3: TestCreate

 public void TestCreate()
 {
     var tempLongPathFilename = Path.Combine(uncDirectory, Path.GetRandomFileName());
     var di = new DirectoryInfo(tempLongPathFilename);
     di.Create();
     try
     {
         Assert.IsTrue(di.Exists);
     }
     finally
     {
         Directory.Delete(tempLongPathFilename);
     }
 }
开发者ID:KsWare,项目名称:LongPath,代码行数:14,代码来源:UncDirectoryInfoTests.cs


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