JavaScript creates log files and records the practice of time

Source: Internet
Author: User
Author: Zhu Jinchan

Source: http://blog.csdn.net/clever101


      Try
	{
	var Wsshell = WScript.CreateObject ("Wscript.Shell");
	var filesys = WScript.CreateObject ("Scripting.FileSystemObject");
    var num = WScript.ScriptFullName.lastIndexOf ("\ \");
    Gets the current path
    var strcurpath = WScript.ScriptFullName.substr (0,num);
    if (filesys.folderexists (Strcurpath)) 
      {
		var log_file = Strcurpath + "\\outdir\\log.txt"; 
		var log_obj;
		var forappending = 8;
          If there is a log file open, create
		if (filesys.fileexists (log_file))
		   log_obj = Filesys.opentextfile (Log_file, ForAppending);
		else
		   log_obj = Filesys.createtextfile (log_file,true);

        Get current time
		 var d, strdate = "Compile finish:";    Declare a variable.
         d = new Date ();                           Creates a Date object.
         strdate +=d.tolocalestring ();        Gets the date and time 
		 log_obj. WriteLine (strdate); Write to log 
	  file
	}
	catch (e)
	{
		WScript.Echo (e.description);  
	}

Reference documents:


OpenTextFile function in 1.JavaScript



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.