91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

C#怎么實現文件Move和Copy操作

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

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

Move操作代碼

public static void MoveFolder(string sourcePath, string destPath)
        {
            if (Directory.Exists(sourcePath))
            {
                if (!Directory.Exists(destPath))
                {
                    //目標目錄不存在則創建  
                    try
                    {
                        Directory.CreateDirectory(destPath);
                    }
                    catch (Exception ex)
                    {
                        throw new Exception("創建目標目錄失敗:" + 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);  

                    //采用遞歸的方法實現  
                    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);
            //創建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();
                //把得到的子文件夾當成新的源文件夾,遞歸調用CopyFilefolder
                CopyFilefolder(subSourcePath, subTargetPath);
            }
        }

到此,關于“C#怎么實現文件Move和Copy操作”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

阿坝| 邢台市| 温泉县| 汶川县| 宕昌县| 大同县| 堆龙德庆县| 克拉玛依市| 马公市| 始兴县| 梨树县| 改则县| 双城市| 龙门县| 阿瓦提县| 略阳县| 成安县| 南岸区| 达日县| 凤城市| 鲁山县| 云浮市| 陆良县| 宝鸡市| 文山县| 雷山县| 柞水县| 天全县| 平舆县| 逊克县| 扎兰屯市| 河北区| 沐川县| 益阳市| 仙游县| 安溪县| 辽中县| 潼关县| 星子县| 五原县| 郯城县|