本文整理汇总了C#中Pri.LongPath.DirectoryInfo.MoveTo方法的典型用法代码示例。如果您正苦于以下问题:C# Pri.LongPath.DirectoryInfo.MoveTo方法的具体用法?C# Pri.LongPath.DirectoryInfo.MoveTo怎么用?C# Pri.LongPath.DirectoryInfo.MoveTo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pri.LongPath.DirectoryInfo
的用法示例。
在下文中一共展示了Pri.LongPath.DirectoryInfo.MoveTo方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestMoveToSamePathWithSlash
public void TestMoveToSamePathWithSlash()
{
var randomDirectoryName = Path.GetRandomFileName();
var tempLongPathDirectory = Path.Combine(uncDirectory, randomDirectoryName) + @"\";
var di = new DirectoryInfo(tempLongPathDirectory);
di.MoveTo(tempLongPathDirectory);
}
示例2: TestMoveToNullPath
public void TestMoveToNullPath()
{
var randomDirectoryName = Path.GetRandomFileName();
var tempLongPathDirectory = Path.Combine(uncDirectory, randomDirectoryName);
var di = new DirectoryInfo(tempLongPathDirectory);
di.MoveTo(null);
}
示例3: TestMoveToDifferentRoot
public void TestMoveToDifferentRoot()
{
var randomDirectoryName = Path.GetRandomFileName();
var tempLongPathDirectory = Path.Combine(uncDirectory, randomDirectoryName);
var di = new DirectoryInfo(tempLongPathDirectory);
di.MoveTo(@"D:\");
}
示例4: TestMoveTo
public void TestMoveTo()
{
var randomFileName = Path.GetRandomFileName();
var randomFileName2 = Path.GetRandomFileName();
var tempLongPathFilename = Path.Combine(uncDirectory, randomFileName);
var tempLongPathFilename2 = Path.Combine(uncDirectory, randomFileName2);
Directory.CreateDirectory(tempLongPathFilename);
try
{
var di = new DirectoryInfo(tempLongPathFilename);
di.MoveTo(tempLongPathFilename2);
di = new DirectoryInfo(uncDirectory);
var dirs = di.EnumerateDirectories("*", SearchOption.TopDirectoryOnly).ToArray();
Assert.AreEqual(1, dirs.Length);
Assert.IsTrue(dirs.Any(f => f.Name == randomFileName2));
Assert.IsFalse(dirs.Any(f => f.Name == randomFileName));
}
finally
{
Directory.Delete(tempLongPathFilename2);
}
Assert.IsFalse(Directory.Exists(tempLongPathFilename));
}
示例5: TestMoveToEmptyPath
public void TestMoveToEmptyPath()
{
var randomDirectoryName = Path.GetRandomFileName();
var tempLongPathDirectory = Path.Combine(longPathDirectory, randomDirectoryName);
var di = new DirectoryInfo(tempLongPathDirectory);
di.MoveTo(string.Empty);
}
示例6: MoveTo
// string _folderName = "c:\\dinoch";
//private void buttonBrowse_Click(object sender, EventArgs e)
//{
// var browseForFolder = new BrowseForFolder();
// var selectFolder = browseForFolder.SelectFolder("Select a file/folder", "", Handle);
// if (!string.IsNullOrEmpty(selectFolder))
// {
// FileOrFolderList.Add(selectFolder);
// }
//}
public void MoveTo(string sourcePath, string tagetPath)
{
if (IsFolder(sourcePath))
{
Pri.LongPath.DirectoryInfo directoryInfo = new Pri.LongPath.DirectoryInfo(sourcePath);
directoryInfo.MoveTo(Pri.LongPath.Path.Combine(tagetPath, directoryInfo.Name));
}
else
{
Pri.LongPath.FileInfo fileInfo = new Pri.LongPath.FileInfo(sourcePath);
fileInfo.MoveTo(Pri.LongPath.Path.Combine(tagetPath, fileInfo.Name));
}
}