zoukankan      html  css  js  c++  java
  • JS 文件复制

    <script>
    var fso = new ActiveXObject("Scripting.FileSystemObject");
    function readFile(filename) {       
     //var fso = new ActiveXObject("Scripting.FileSystemObject");
            var f = fso.OpenTextFile(filename, 1);
            var s = "";
            while (!f.AtEndOfStream)
                s += f.ReadLine() + "\n";
            f.Close();
            alert(s);


    }

     function writeFile(filename, filecontent) {    
     var f, s;
           // fso = new ActiveXObject("Scripting.FileSystemObject");
         fso.CreateTextFile("", true);
            f = fso.OpenTextFile(filename, 2, true);
            f.WriteLine(filecontent);
            f.Close();
     }

    </script>
    </head>

    <body>
    <input type="button" id="testID" onclick="readFile('C:\\Users\\lkf73943\\Desktop\\TestHtml\\test.txt')" style="50px; height:50px;"/>
    <br />
    <br />
    <input type="button" id="testID_1" onclick="writeFile('C:\\Users\\lkf73943\\Desktop\\TestHtml\\test.txt','lets go!!')" style="50px; height:50px;"/>

    </body>
    </html>

    var shell = new ActiveXObject("Wscript.Shell");
        shell.run("cmd.exe /k "+"d: & cd test & copy cmd.txt+,, & exit");
        shell=null;

  • 相关阅读:
    jsp标签${fn:contains()}遇到问题记录
    maven更改本地的maven私服
    elk使用记录
    dubbo 报错问题记录:may be version or group mismatch
    mybatis自动生成后无法获取主键id问题
    tomcat关闭异常导致的项目无法重启
    jsp 记录
    spring bean
    JDBC
    el表达式
  • 原文地址:https://www.cnblogs.com/standy225/p/2829216.html
Copyright © 2011-2022 走看看