Top "Fso" questions

Object Model component on Windows systems that represents the local file system.

Using VBA to get extended file attributes

Trying to use Excel VBA to capture all the file attributes from files on disk, including extended attributes. Was able …

vba file-attributes fso
Issue with MoveFile method to overwrite file in Destination in vbscript?

I have a vbscript that I have written to move files from a source directory to a destination directory. The …

file-io vbscript fso
Read line per line a txt file with VBS

I'm trying this code: filename = "test.txt" listFile = fso.OpenTextFile(filename).ReadAll listLines = Split(listFile, vbCrLf) For Each line In …

vbscript fso
How to write data to textfile using JavaScript

I have some problem to write date to a file Test.txt by using JavaScript. I have find answer in …

javascript php activexobject fso
How to read lines from a text file one by one with Power Point VBA code?

This code will read a line from a text file: set file = CreateObject("Scripting.FileSystemObject").OpenTextFile("c:\number.txt", 1) text = …

file-io command-line newline fso
Pass a username/password when accessing a folder via VBScript

I have a script that is meant to retrieve some files from a users old profile on a server and …

vbscript credentials fso
Permissions error on FSO DeleteFile/MoveFile

I'm trying to delete/move a file using classic asp fso but I'm getting this error: Microsoft VBScript runtime error …

file-io permissions fso
Two ways to write to text file using Excel VBA: Microsoft Standard Library vs Microsoft Scripting Runtime

I found there is two ways of creating and writing to a text file in Excel VBA: by using microsoft …

excel text-files fso vba