溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#怎么實現(xiàn)文件Move和Copy操作

發(fā)布時間:2022-04-11 10:56:23 來源:億速云 閱讀:199 作者:iii 欄目:開發(fā)技術

這篇文章主要介紹“C#怎么實現(xiàn)文件Move和Copy操作”,在日常操作中,相信很多人在C#怎么實現(xiàn)文件Move和Copy操作問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C#怎么實現(xiàn)文件Move和Copy操作”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Move操作代碼

public static void MoveFolder(string sourcePath, string destPath)
        {
            if (Directory.Exists(sourcePath))
            {
                if (!Directory.Exists(destPath))
                {
                    //目標目錄不存在則創(chuàng)建  
                    try
                    {
                        Directory.CreateDirectory(destPath);
                    }
                    catch (Exception ex)
                    {
                        throw new Exception("創(chuàng)建目標目錄失?。?quot; + ex.Message);
                    }
                }
                //獲得源文件下所有文件  
                List<string> files = new List<string>(Directory.GetFiles(sourcePath));
                files.ForEach(c =>
                {
                    string destFile = Path.Combine(new string[] { destPath, Path.GetFileName(c) });
                    //覆蓋模式  
                    if (File.Exists(destFile))
                    {
                        File.Delete(destFile);
                    }
                    File.Move(c, destFile);
                });
                //獲得源文件下所有目錄文件  
                List<string> folders = new List<string>(Directory.GetDirectories(sourcePath));

                folders.ForEach(c =>
                {
                    string destDir = Path.Combine(new string[] { destPath, Path.GetFileName(c) });
                    //Directory.Move必須要在同一個根目錄下移動才有效,不能在不同卷中移動。  
                    //Directory.Move(c, destDir);  

                    //采用遞歸的方法實現(xiàn)  
                    MoveFolder(c, destDir);
                });
            }
            else
            {}
        }

Copy操作代碼

public static void CopyFilefolder(string sourceFilePath, string targetFilePath)
        {
            //獲取源文件夾中的所有非目錄文件
            string[] files = Directory.GetFiles(sourceFilePath);
            string fileName;
            string destFile;
            //如果目標文件夾不存在,則新建目標文件夾
            if (!Directory.Exists(targetFilePath))
            {
                Directory.CreateDirectory(targetFilePath);
            }
            //將獲取到的文件一個一個拷貝到目標文件夾中  
            foreach (string s in files)
            {
                fileName = Path.GetFileName(s);
                destFile = Path.Combine(targetFilePath, fileName);
                File.Copy(s, destFile, true);
            }
            //上面一段在MSDN上可以看到源碼 

            //獲取并存儲源文件夾中的文件夾名
            string[] filefolders = Directory.GetFiles(sourceFilePath);
            //創(chuàng)建Directoryinfo實例 
            DirectoryInfo dirinfo = new DirectoryInfo(sourceFilePath);
            //獲取得源文件夾下的所有子文件夾名
            DirectoryInfo[] subFileFolder = dirinfo.GetDirectories();
            for (int j = 0; j < subFileFolder.Length; j++)
            {
                //獲取所有子文件夾名 
                string subSourcePath = sourceFilePath + "\\" + subFileFolder[j].ToString();
                string subTargetPath = targetFilePath + "\\" + subFileFolder[j].ToString();
                //把得到的子文件夾當成新的源文件夾,遞歸調(diào)用CopyFilefolder
                CopyFilefolder(subSourcePath, subTargetPath);
            }
        }

到此,關于“C#怎么實現(xiàn)文件Move和Copy操作”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI