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;
            }
        }
    }
  • 相关阅读:
    索引的设计与使用
    字符集
    选择合适的数据类型
    java 23种设计模式 深入理解(转)
    进程间的通信方式
    SPRING的事务传播
    面向对象的五大基本原则
    J2EE中常用的名词解释
    JVM内存配置参数:
    域对象
  • 原文地址:https://www.cnblogs.com/lockzy/p/11758937.html
Copyright © 2011-2022 走看看