Tagged Questions
The filesystemobject tag has no wiki summary.
9
votes
7answers
2k views
Directory file size calculation - how to make it faster?
Using C#, I am finding the total size of a directory. The logic is this way : Get the files inside the folder. Sum up the total size. Find if there are sub directories. Then do a recursive search.
I ...
5
votes
3answers
224 views
Pass existing FileSystemObject or create multiple instances
I have several procedures that use the FileSystemObject. I find it's quite convenient.
Question: Is it sensible to pass an existing instance of FileSystemObject from a "main" procedure to these ...
3
votes
2answers
155 views
When is a file not a file system object?
I have code which enumerates the Favorites folder (recursively) by means of the shell API. I use the GetAttributesOf function to obtain the attributes of each object I find.
Because I never advance ...
3
votes
2answers
2k views
File permissions with FileSystemObject - CScript.exe says one thing, Classic ASP says another
I have a classic ASP page - written in JScript - that's using Scripting.FileSystemObject to save files to a network share - and it's not working. ("Permission denied")
The ASP page is running under ...
3
votes
3answers
4k views
Exclusive File access to logfile with VBScript and Filesystemobject
Need help with this one.
I have a VBS script that currently writes to a logfile. This script can be kicked off my multiple simultaneous processes so now I'm worried about concurreny.
I'm currently ...
2
votes
1answer
55 views
How can I find path of file
In the end, I am trying to return the 'Product Version' of Robocopy.exe (in order to avoid using XP026; broken return code). I can use Shell.Application, NameSpace, ParseName to get the 'Product ...
2
votes
2answers
624 views
JavaScript: ActiveXObject in Firefox or Chrome (not IE!)
I am trying to create an ActiveXObject (to use FieSystemObject) but it's only supported in IE.
Is there a way I can make it work in Chrome or FF? I need to read all the files in a specific given ...
2
votes
1answer
107 views
Scripting.FileSystemObject location (from JavaScript)
I have a file for my Windows sidebar gadget that stores some settings for the user, but the FSO object seems to pick its native residence as the desktop, meaning that if I don't specify a directory, ...
2
votes
1answer
444 views
How do I reliably determine folder size using FileSystemObject.Size?
Trying to compute the size of a folder that could be very large, I used FileSystemObject.Size:
#! perl
use strict;
use warnings;
use 5.10.0;
use File::Spec;
use Win32::OLE;
my $_fso;
sub ...
2
votes
1answer
248 views
Unicode named Folder shows ? in wscript prompt
I am facing problems with Unicode named folders. When I drag the folder to the script, it doesn't show the path of the folder properly.
Simple VBScript (this is just a portion of it):
Dim Wshso : ...
2
votes
2answers
1k views
Scripting.FileSystemObject Write method fails
So in my program I'm using COM Auotmation (AutomationFactory in Silverlight 4) to create a FileSystemObject, to which I write a string (theContent). theContent in this case is a small UTF-8 XML file, ...
2
votes
3answers
534 views
Is using the windows script host, especially the FileSystemObject hereof a good idea?
Recently I have been asked to do some maintenance on a VB6 application. This involves some file IO. I find the IO operations offered by referencing the windows script host and using the ...
2
votes
1answer
598 views
Alternative to Server.CreateObject
I am writing a navigation system in classic ASP (on Windows CE).
I require a way to dynamically include navigation files based on the calling script.
I have come up with the following code that ...
2
votes
3answers
2k views
Scripting.Filesystemobject filemove, writefile not working from javascript in IE browser (workarounds, doc?)
I know it's a huge security hole to use Scripting.Filesystemobject from javascript in the browser. I heard a rumor that MS is locking down this hole in the latest version of Office. This would be ...
2
votes
2answers
2k views
Can't write file in classic asp
Ok, it's been a while since I've worked with classic asp so I'm a bit rusty. Here's my question.
I'm trying to write a file to the file system using FSO. The code below is very simple. However, the ...
2
votes
2answers
624 views
ASP FileSystemObject collection cannot be accessed by index
Am I going mad? I cannot find a way to get hold of the first file in a folder with the FileSystemObject (classic ASP). With most collections you'd think the index 0 or 1 might work, but IIS says ...
1
vote
2answers
78 views
FSO to copy save files. VBScript/ASP page using subroutine
I'm trying to use FSO = Server.CreateObject("Scripting.FileSystemObject") to copy/save files utilising a ASP utility called 'csImageFile'
At present the FSO code I have is on a separate .asp page. ...
1
vote
2answers
64 views
comparing modified versions of filenames obtained using VBA's FileSystemObject
Using VBA with a reference to Microsoft Scripting Runtime. I'm trying to compare filenames in two different directories, to find whether or not the same file is in both directories. However, I'm not ...
1
vote
2answers
287 views
Classic ASP .CopyFile “Permission Denied” error on Windows Server 2008, IIS 7
We are upgrading our intranet web server from a Windows Server 2000, IIS 4 environment to Windows Server 2008, IIS 7 environment. As part of the upgrade, I'm modifying a classic ASP application to ...
1
vote
3answers
267 views
C# FileSystemObject How to get folder's comment property?
If i create a folder in windows and right click select properties and give some comment about it in the comment field.
in C#, How do i get the comment for a folder ? Is there any "Comment" Property ...
1
vote
2answers
376 views
How to open, modify and save a file with javascript and ActiveX?
I tried different methods to open and show a file on client without to send the file to a server.
Opening: I tried to access the file with javascript from a <input type=file>, but the security ...
1
vote
1answer
316 views
FileSystemObject moves a file even when is being copied over FTP
I have a program that checks periodically for new files, and then process them.
Because I want to be safe that the file is not being copied over FTP, I move the file first.
The strange thing is that ...
1
vote
1answer
750 views
Write binary data with FileSystemObject write()
I am developing a function in Javascript using FileSystemObject, where I just have to write in a file the binary data we are provided. This is my function.
function exportFile(data)
{
var fso, ...
1
vote
1answer
395 views
VBScript:FileSystemObject.Can i use GetFolder method with absolute url?
in ASP-vbscript, I can use the GetFolder method of FileSystemObject to get the contents inside a folder if i pass the location of the folder
Set fso = CreateObject("Scripting.FileSystemObject")
Set ...
1
vote
3answers
1k views
How do I use FileSystemObject in VBA?
Is there something that I need to reference? How do I use this:
Dim fso As New FileSystemObject
Dim fld As Folder
Dim ts As TextStream
I am getting an error because it does not recognize these ...
1
vote
1answer
449 views
What do the enum values of objLogicalDisk.DriveType in vbscript refer to?
so the following code:
Dim objFSO : Set objFSO = CreateObject("Scripting.FileSystemObject")
Dim colDrives : Set colDrives = objFSO.Drives
Dim objWMIService : Set objWMIService = ...
1
vote
1answer
177 views
VBA or Vb Scripting: how to write to a file in Unicode using FileSystemObject
How would you use FileSystemObject to write to a string to a file in Unicode?
1
vote
3answers
633 views
VBScript's CopyFile not working
I think it may have something to do with the external file but I am getting the error Path not found and don't know why. Code below.
<%
Dim fs
set fs = ...
1
vote
3answers
768 views
Getting the size of a remote folder via classic ASP
I'm trying to something pretty simple but am having headaches with it. I'm pretty sure all I have here is a permissions issue I don't know how to solve but I could be wrong.
Here is my scenario...
I ...
1
vote
2answers
1k views
Classic ASP: Best way to read & write large (5mb+) files using FileSystemObject
All,
I'm working on an application that allows authorized users to upload Excel spreadsheets to our server.
Once they're uploaded, there's a classic ASP script that reads the data in the Excel ...
0
votes
0answers
12 views
How detect if mapped network drive is disconnected using IShellFolder?
I am using the IShellFolder interface to enumermate the Shell namespace objects. Doing this I am getting my mapped network drives, of which some are connected and available and others are not.
I ...
0
votes
2answers
61 views
If file exists then delete the file
I have a vbscript that is used to rename files. What I need to implement into the script is something that deletes the "new file" if it already exists.
For example: I have a batch of files that are ...
0
votes
1answer
30 views
Use JavaScript/ActiveX to get list of files
I've been Googling for hours with no avail...!
How do I use the Scripting.FileSystem object?
In my current case, I want to fill a SELECT element with a list of folders from a particular location. ...
0
votes
2answers
57 views
Cannot delete a file using ASP DeleteFile method
I'm trying to delete an image file whenever a user clicks a link to delete it. I get no errors, and the error number is zero. However, the file is not deleted. I can save the photos file, but not ...
0
votes
2answers
160 views
Use Scripting.FileSystemObject to create file in path that doesn't already exist
I'm trying to create a text file using the Scripting.FileSystemObject in JScript. I can't seem to figure out how to create the file if a directory in the file doesn't already exist. For example:
var ...
0
votes
0answers
16 views
Where can I find documentation on the OLE Properties of FileSystemObject
I am looking at using SP_OACreate and SP_OAGetProperty to return the Size and Date of a file. I need to know what the correct OLE properties of the Filesystemobject are however to pass into ...
0
votes
1answer
258 views
createobject scripting.filesystemobject IIS 7 - vbscript code always trying to save file in C:\Windows\System32\inetsrv\ instead of web site folder
As per title
createobject scripting.filesystemobject IIS 7 - vbscript code is always trying to save file in C:\Windows\System32\inetsrv\ instead of web site folder
and I get a "permission denied" ...
0
votes
1answer
97 views
vbscript FileSystemObject works locally but not live
can anyone tell me what's going on with this (what should be) simple peice of VBscript. It is working locally but as soon as I try it online, it kick out an error as below! Everythings saved in the ...
0
votes
1answer
141 views
ActiveX write to file from JavaScript on Windows Mobile 6.5 - nothing happens
I need to persist some information in offline mode for future use. Normally I would use local storage from HTML5, but on Windows Mobile 6.5, it seems there is no browser available that would support ...
0
votes
1answer
117 views
Use of FileSystemObject on Windows Phone 7 - IE9 Mango (and iPhone alternative)
Is it possible to use this on a windows phone?
var fsObj = new ActiveXObject("Scripting.FileSystemObject");
var theFile = fsObj.CreateTextFile("c:\\giantco.txt", true);
theFile.WriteLine(theData);
...
0
votes
1answer
208 views
JavaScript: Read files in folder
EDIT: I'm trying to read all the files in a specific folder and list the files in there, not read the content of a specific file. I just tried to simply create an FileSystemObject and it doesn't do ...
0
votes
2answers
46 views
Deleting a folder on another thread causes webpage to not update?
I have a web app which displays a list of emails that need to be sent for the day. The user can select what emails to send, then click a button to generate them. When they click the Send button, a ...
0
votes
1answer
86 views
HTTPS & FSO.copyfile
I have a legacy ASP application that uses FSO (Scripting.FileSystemObjec) to copy a file from the web box to a network share. Since we have upgraded the server to HTTPS, the file copy is slower. Can ...
0
votes
1answer
367 views
IE ActiveX' FileSystemObject - how to read local file with JS - help
I am studying the FileSystemObject... The thing is I couldn't find any code snippets which show some conceptions as
A) JS local File reading as binary stream
B) encode the stream to base64
C) images ...
0
votes
0answers
43 views
FileSystemObject and Japanese file names
One of my legacy application (Created in MS-Access Forms) copies some files from one location to another based on some logic. Today, application gave me error while copying the files. Its breaking ...
0
votes
0answers
55 views
How can i use swedish characters in a local file path through asp classic?
I've got a server with a lot of files and folders containing swedish characters and i need to be able to write, read and use swedish chars in filenames and foldernames. So far i've only used the ...
0
votes
1answer
3k views
Error: ActiveX Component Can't Create Object Scripting.FileSystemObject
I have a simple vbs-file on my drive c: with following content:
Set objShell = CreateObject("Scripting.FileSystemObject")
When I'm trying to launch it, I get error
c:\fso.vbs(1, 1) Microsoft ...
0
votes
1answer
240 views
Why does this VBScript throw an error when trying to create a file?
I have found this script and cant seem to figure out why it throws an error when trying to create the file C:\IPSecWeights.xls.
The line that I am having problems with so far is:
Set objWorkbook = ...
0
votes
2answers
189 views
FileSystemObject: what is the difference between GetFolder and GetParentFolderName?
In FileSystemObject, what is the difference between GetFolder and GetParentFolderName?
0
votes
1answer
161 views
Drive Letters Usage with the FileSystemObject - VBScript
I am migrating from a Win 2003 server to a Win 2008 R2 server. I'm running a classic ASP application. In the 2003 server the following code worked for creating a file:
CONST ...