Category: I/O File
May 6, 2013
beginner, I/O File, implementation, internet, programming languages, tricks, VBA, vbscript, windows, windows scripting host
Ajax stands for Asynchronous Javascript and Xml. In the examples given in this post, we can see that XMLHTTP object is created, for IE6 and IE5. The XMLHTTP object can be used in VBScript to …
The FileSystemObject provides a GetTempName method that returns a temporary file name. The following is the short example, in VBScript on Windows Scripting Host. ' Auto-Generate a File Name Set objFSO …
April 23, 2013
base64, beginner, HTML5, http, I/O File, implementation, optimization, php, programming languages, SEO, tricks
Sometimes you want to distribute your HTML application (*.hta) or a pure HTML file (*.html) without any external images. However, it would be nice to include some images, such …
Scripting.FileSystemObject is a powerful utility, that is often used in Scripting languages. In , the Scripting.FileSystemObject is used to verify if a folder exists. It can be also used …
The following script snippet is handy at checking whether a folder exists or not at Window Script Hosting Environment using VBScript. Set objFSO = CreateObject("Scripting.FileSystemObject") If objFSO.FolderExists("C:\FSO") Then Set …