473,386 Members | 1,819 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

The process cannot access the file

I get this error while reading my config file but it is only occasionally
and not all the time. I'm not sure why its happening. Does anyone know what
could be going wrong? Thanks.

[28/03/2006 14:52:06] The process cannot access the file 'C:\GCC Business
Layer\GCCBL.config' because it is being used by another process. - at
System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess
access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize,
FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean
bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode)
at GCCBL.CoolFusion.ReadConfig(String myValue)
************************************************** ************************

My Code :

System.IO.FileStream fsReadXml = new System.IO.FileStream

(System.AppDomain.CurrentDomain.BaseDirectory + "GCCBL.config",
System.IO.FileMode.Open);
// Create an XmlTextReader to read the file.

System.Xml.XmlTextReader myXmlReader =

new System.Xml.XmlTextReader(fsReadXml);

// Read the XML document into the DataSet.

DataSet myDataSet = new DataSet();

myDataSet.ReadXml(myXmlReader);

// Close the XmlTextReader

myXmlReader.Close();

fsReadXml.Dispose();
Mar 29 '06 #1
2 7643
Nobody has any idea?
"John" <jh******@msn.com> wrote in message
news:eT**************@TK2MSFTNGP11.phx.gbl...
I get this error while reading my config file but it is only occasionally
and not all the time. I'm not sure why its happening. Does anyone know what
could be going wrong? Thanks.

[28/03/2006 14:52:06] The process cannot access the file 'C:\GCC Business
Layer\GCCBL.config' because it is being used by another process. - at
System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess
access, Int32 rights, Boolean useRights, FileShare share, Int32
bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String
msgPath, Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode)
at GCCBL.CoolFusion.ReadConfig(String myValue)

************************************************** ************************

My Code :

System.IO.FileStream fsReadXml = new System.IO.FileStream

(System.AppDomain.CurrentDomain.BaseDirectory + "GCCBL.config",
System.IO.FileMode.Open);
// Create an XmlTextReader to read the file.

System.Xml.XmlTextReader myXmlReader =

new System.Xml.XmlTextReader(fsReadXml);

// Read the XML document into the DataSet.

DataSet myDataSet = new DataSet();

myDataSet.ReadXml(myXmlReader);

// Close the XmlTextReader

myXmlReader.Close();

fsReadXml.Dispose();

Apr 4 '06 #2
Change

(System.AppDomain.CurrentDomain.BaseDirectory + "GCCBL.config",
System.IO.FileMode.Open);
to

(System.AppDomain.CurrentDomain.BaseDirectory + "GCCBL.config",
System.IO.FileMode.Open, System.IO.FileAccess.Read);

By default it is opening read/write exclusive use.

Jim Hughes

"John" <jh******@msn.com> wrote in message
news:eT**************@TK2MSFTNGP11.phx.gbl...
I get this error while reading my config file but it is only occasionally
and not all the time. I'm not sure why its happening. Does anyone know what
could be going wrong? Thanks.

[28/03/2006 14:52:06] The process cannot access the file 'C:\GCC Business
Layer\GCCBL.config' because it is being used by another process. - at
System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess
access, Int32 rights, Boolean useRights, FileShare share, Int32
bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String
msgPath, Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode)
at GCCBL.CoolFusion.ReadConfig(String myValue)

************************************************** ************************

My Code :

System.IO.FileStream fsReadXml = new System.IO.FileStream

(System.AppDomain.CurrentDomain.BaseDirectory + "GCCBL.config",
System.IO.FileMode.Open);
// Create an XmlTextReader to read the file.

System.Xml.XmlTextReader myXmlReader =

new System.Xml.XmlTextReader(fsReadXml);

// Read the XML document into the DataSet.

DataSet myDataSet = new DataSet();

myDataSet.ReadXml(myXmlReader);

// Close the XmlTextReader

myXmlReader.Close();

fsReadXml.Dispose();

Apr 5 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Paul | last post by:
Hi, VB.NET is saying the file I am creating is in use by another process and won't complete its task of moving the file to the specified destination folder. Here is my code (the main bit...
4
by: Mountain Bikn' Guy | last post by:
I am having serious problems with the following IDE bug: Could not write to output file 'x.dll' -- 'The process cannot access the file because it is being used by another process. ' and BUG:...
3
by: trellow | last post by:
Hello, I am writing an application that needs to read a file that is already open by another process for writing. When I do the following: FileStream fs = new FileStream(fileName,...
2
by: Raed Sawalha | last post by:
Hello , I have windows service which do listening to specified directory using FileSystemWatcher , on Created Event and Get all the files in the directory using Directory.GetFiles function then...
3
by: guoqi zheng | last post by:
Dear sir, There is an import tool on my web application, user can upload Ms Access file, the file is saved at a temp folder on the server. After the import is finished, for security reason, I...
0
by: Sin | last post by:
> Xxxxx : error PRJ0008 : Could not delete file 'd:\xxxxxxx.dll'. > Make sure that the file is not open by another process and is not write-protected. > > LINK : fatal error LNK1168: cannot open...
5
by: ZWeng | last post by:
I created a windows service using FileSystemWatcher to moniter a folder for file drops. The service uses FileStream and StreamReader to read and process the file. After it is done, the file is...
0
by: imranabdulaziz | last post by:
Dear All, I am making web application using Asp.net C#(Visual Studio2005). And Sql server 2005 as a back End I generated local mode report but as there was no printing option available . I assign...
0
nightangel
by: nightangel | last post by:
Hi dude,what i was done in my application is uploading a image file to my server using FTP, it work great when pushing a file into the server path using FTP. The problem i met now is i need to do a...
4
by: =?Utf-8?B?VkIgSm9ubmll?= | last post by:
I am at my witless end here, please help! I have an ASP.Net aspx web page, hosted on Windows Server 2003, that receives a query string with the path to an autocad drawing file selected from a...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.