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


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

本文整理汇总了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);
        }
开发者ID:KsWare,项目名称:LongPath,代码行数:8,代码来源:UncDirectoryInfoTests.cs

示例2: TestMoveToNullPath

        public void TestMoveToNullPath()
        {
            var randomDirectoryName = Path.GetRandomFileName();
            var tempLongPathDirectory = Path.Combine(uncDirectory, randomDirectoryName);
            var di = new DirectoryInfo(tempLongPathDirectory);

            di.MoveTo(null);
        }
开发者ID:KsWare,项目名称:LongPath,代码行数:8,代码来源:UncDirectoryInfoTests.cs

示例3: TestMoveToDifferentRoot

        public void TestMoveToDifferentRoot()
        {
            var randomDirectoryName = Path.GetRandomFileName();
            var tempLongPathDirectory = Path.Combine(uncDirectory, randomDirectoryName);
            var di = new DirectoryInfo(tempLongPathDirectory);

            di.MoveTo(@"D:\");
        }
开发者ID:KsWare,项目名称:LongPath,代码行数:8,代码来源:UncDirectoryInfoTests.cs

示例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));
 }
开发者ID:KsWare,项目名称:LongPath,代码行数:23,代码来源:UncDirectoryInfoTests.cs

示例5: TestMoveToEmptyPath

        public void TestMoveToEmptyPath()
        {
            var randomDirectoryName = Path.GetRandomFileName();
            var tempLongPathDirectory = Path.Combine(longPathDirectory, randomDirectoryName);
            var di = new DirectoryInfo(tempLongPathDirectory);

            di.MoveTo(string.Empty);
        }
开发者ID:KsWare,项目名称:LongPath,代码行数:8,代码来源:DirectoryInfoTests.cs

示例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));
            }
        }
开发者ID:poweredscript,项目名称:Long-Path-Tool,代码行数:25,代码来源:Form1.cs


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