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


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

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

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


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