File is locked by a process/program

  • Thread starter Thread starter Felipe
  • Start date Start date
F

Felipe

Hello again
I run a script from server side that opens a file.
When ahoter user run the same application, the system fails because this
file is alredy open.
How can avoid this error?
"This files is already open, try again" or another message error intead?

Thanks
 
Hi,
Hello again
I run a script from server side that opens a file.
When ahoter user run the same application, the system fails because this
file is alredy open.
How can avoid this error?
"This files is already open, try again" or another message error intead?

Thanks

Hard to say without seeing how you handle the file. Make sure that
streams are closed after you're done with the file. Also, if you use the
Bitmap class to load an image, I found out that you must absolutely use
the Dispose method when you're finished, or else the image file remains
open.

HTH,
Laurent
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top