本文整理汇总了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();
}
}
示例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);
}
}
示例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);
}
}