zoukankan      html  css  js  c++  java
  • Io文件批处理

     namespace ConsoleApp1
    {
        class Program
        {
            static void Main(string[] args)
            {
                string path = @"F:Newgrand_ProjectG6H_5.1R_JSBusinessDlls";
                string path2 = @"D:软件NGWebSite";
                string prefix = @"GJS3.JS.";
                List<string> binFileNames = new List<string>
                {
                    "Controller.dll",
                    "Model.dll"
                };
                List<string> ruleFileNames = new List<string>
                {
                    "Dac.dll",
                    "Dac.Interface.dll",
                    "Facade.dll",
                    "Facade.Interface.dll",
                    "Rule.dll",
                    "Rule.Interface.dll",
                    "Service.dll",
                    "Service.Interface.dll"
                };
                binFileNames.ForEach(p =>
                {
                    Console.WriteLine($"{path}\bin\{prefix}{p}  to {path2}\bin\{prefix}{p}");
                    File.Copy($"{path}\bin\{prefix}{p}", $"{path2}\bin\{prefix}{p}", true);//允许覆盖目的地的同名文件
                });

                ruleFileNames.ForEach(p =>
                {
                    Console.WriteLine($"{path}\Rules\{prefix}{p}  to {path2}\I6Rules\{prefix}{p}");
                    File.Copy($"{path}\Rules\{prefix}{p}", $"{path2}\I6Rules\{prefix}{p}", true);//允许覆盖目的地的同名文件
                });

            }
            public static string ChangeText(string s)
            {
                var f = s[0];
                s = s.Remove(0, 1).Insert(0, Char.ToUpper(f).ToString());
                while (s.Contains("_"))
                {
                   var index = s.LastIndexOf("_");
                    char c = s[index+1];
                    s = s.Remove(index, 2).Insert(index, Char.ToUpper(c).ToString());
                }

                return s;
            }
        }
    }
  • 相关阅读:
    名字 地址 路由
    截断二进制指数退避
    硬件地址 软件地址
    基带信号 调制
    非对称数字用户线
    码分复用 码分多址
    时分复用 帧长度
    多模光纤 单模光纤
    码间串扰 奈氏准则 香农公式
    flask 文件下载 文件服务器 请求参数 函数修饰符
  • 原文地址:https://www.cnblogs.com/lockzy/p/11758937.html
Copyright © 2011-2022 走看看