C# 파일 및 폴더 복사(스터디 노트)

1394 단어 exceptionStringC#File
/// <summary>
        ///  
        /// </summary>
        /// <param name="source"> </param>
        /// <param name="target"> </param>
        private bool MoveFolderTo(string srcPath, string tgtPath)
        {
            try
            {
                // , 
                if (tgtPath[tgtPath.Length - 1] != System.IO.Path.DirectorySeparatorChar)
                {
                    tgtPath += System.IO.Path.DirectorySeparatorChar;
                }
                // 
                if (!System.IO.Directory.Exists(tgtPath))
                {
                    Directory.CreateDirectory(tgtPath);
                }
                // 
                string[] fileList = Directory.GetFileSystemEntries(srcPath);
                foreach(string file in fileList)
                {
                    if (Directory.Exists(file))
                    {
                        MoveFolderTo(file, tgtPath + System.IO.Path.GetFileName(file));
                    }
                    else
                    {
                        System.IO.File.Copy(file, tgtPath + System.IO.Path.GetFileName(file), true);
                    }
                }
                return true;
            }
            catch (Exception ex)
            {
                return false;
            }
        }

좋은 웹페이지 즐겨찾기