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;

  • 相关阅读:
    团队作业7
    团队作业五
    团队作业四
    团队作业3
    团队作业调研
    团队作业 团队组织方式讨论
    团队成员介绍
    iOS大神博客列表
    iOS JSBridge实现
    「节日换肤」通用技术方案__iOS端实现
  • 原文地址:https://www.cnblogs.com/standy225/p/2829216.html
Copyright © 2011-2022 走看看