本文整理汇总了C#中Pri.LongPath.FileInfo.MoveTo方法的典型用法代码示例。如果您正苦于以下问题:C# Pri.LongPath.FileInfo.MoveTo方法的具体用法?C# Pri.LongPath.FileInfo.MoveTo怎么用?C# Pri.LongPath.FileInfo.MoveTo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pri.LongPath.FileInfo
的用法示例。
在下文中一共展示了Pri.LongPath.FileInfo.MoveTo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestMoveTo
public void TestMoveTo()
{
var tempLongPathFilename = new StringBuilder(longPathDirectory).Append(@"\").Append("file21.ext").ToString();
var tempDestLongPathFilename = new StringBuilder(longPathDirectory).Append(@"\").Append("file21-1.ext").ToString();
Assert.IsFalse(File.Exists(tempLongPathFilename));
File.Copy(longPathFilename, tempLongPathFilename);
try
{
Assert.IsTrue(File.Exists(tempLongPathFilename));
var fi = new FileInfo(tempLongPathFilename);
fi.MoveTo(tempDestLongPathFilename);
try
{
Assert.IsFalse(File.Exists(tempLongPathFilename));
Assert.IsTrue(File.Exists(tempDestLongPathFilename));
}
finally
{
File.Delete(tempDestLongPathFilename);
}
}
finally
{
if (File.Exists(tempLongPathFilename))
File.Delete(tempLongPathFilename);
}
}
示例2: 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));
}
}