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;
            }
        }
    }
  • 相关阅读:
    SQL Server 2008R2中取得详细日期到毫秒级
    SQL Server Analysis Services无法启动
    SQL Server 2008R2编写脚本时智能提示功能丢失的处理
    SQL Server使用Linkserver连接Oracle
    好用的eclipse快捷键
    今天项目出现的问题总结
    8.2微信小页面问题总结
    SpringBoot整合rabbitmq
    初学Netty(杰哥好久不见)
    消息队列RabbitMQ学习
  • 原文地址:https://www.cnblogs.com/lockzy/p/11758937.html
Copyright © 2011-2022 走看看