vote up 3 vote down star

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 using the FilesystemObject to open and write to this file. Does FSO support exclusive file access?

Thanks in Advance

flag

4 Answers

vote up 1 vote down

Yes, FileSystemObject does support exclusive file access. If another process has a lock on the file when you call OpenTextFile, you will get an error (a permission denied error). You should be able to trap the error and handle it appropriately (check that Err.Number <> 0 after the call to OpenTextFile is one way you could do that).

link|flag
vote up 0 vote down

I don't know how accessable the Windows API is to you, but you should have a look at the Debugging infrastructure in the Windows API.

Theres a good Code Project article on it here Basically using OutputDebugString and catching that with DebugView, or piping it to file will remove you issue with locking the log file, also will remove the bottle neck of multiple scripts queued to write to the log file.

Hope this helps.

link|flag
vote up 0 vote down

Using Err.Number <> 0 worked great.

THanks a million again!

link|flag
vote up 0 vote down

If at all possible I recommend you close the handle and reopen it every time you need to write to the file, to avoid possible exclusive file access issues. Ex:

set objFile = objFSO.OpenTextFile("somefile.txt",8,True)
objFSO.WriteLine "jfdskfdkls"
objFSO.Close
'something something
set objFile = objFSO.OpenTextFile("somefile.txt",8,True)
objFSO.WriteLine "gfdgfdgfd"
objFSO.Close
'something else
set objFile = objFSO.OpenTextFile("somefile.txt",8,True)
objFSO.WriteLine "ddsgfgdfsgdfs"
objFSO.Close
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.