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;
            }
        }
    }
  • 相关阅读:
    Windows 7 x64 (英文操作系统)安装SQLServer 2005版本相关解决方法
    vs2008打开vs2010所做的项目的方法
    sqlserver2008 创建自动备份任务(图文教程)
    js返回上一页,自动刷新自身、父页面语句的实现
    有效的更改IE、Firefox、Chrome浏览器缓存位置的方法
    oo第二次总结
    OO第一次博客总结
    Ansible常用命令整理
    APM全链路监控日志收集篇
    TCP 和 UDP 的区别还有一个UTP一
  • 原文地址:https://www.cnblogs.com/lockzy/p/11758937.html
Copyright © 2011-2022 走看看