473,320 Members | 2,110 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,320 software developers and data experts.

FileInfo still locking the file ?

I need to load a txt file into SQL server, so I have to use a
schema.ini file.
Unfortunately MS decided that in this schema.ini the name of the file
that gets sucked in has to be hardcoded. So I decided to read the file
in an array and then change the first line, write out the rest to a
file again. Now all this works fine, however just after writing this
schema.ini I try to fetch the text file in SQL and now in the
background this schema.ini has to be used. But
it complains that the file is locked by another process. :(

Here is my code

FileInfo t = new FileInfo("schema.ini");
StreamWriter Tex =t.CreateText();
Tex.WriteLine("[" + myDA.inputGrouperFileName.ToString() + "]");

for (int y = 1; y < mystring.Length; y++)
{
Tex.WriteLine(mystring[y].ToString());
}
Tex.Close();

t = null;

I feel that FileInfo is still sitting on the File, however there is no
..close() I could use :(

any idea ?

regards
andreas
Nov 16 '05 #1
0 1604

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

Similar topics

2
by: David Turner | last post by:
I have created an ASP.NET page that uses the System.IO.DirectoryInfo.GetFiles() method to get a list of files in a specific directory on our web server. (I simply use this list to build some...
0
by: Andreas Palm | last post by:
I need to load a txt file into SQL server, so I have to use a schema.ini file. Unfortunately MS decided that in this schema.ini the name of the file that gets sucked in has to be hardcoded. So I...
0
by: Andreas Palm | last post by:
I need to load a txt file into SQL server, so I have to use a schema.ini file. Unfortunately MS decided that in this schema.ini the name of the file that gets sucked in has to be hardcoded. So I...
3
by: David Turner | last post by:
I have created an ASP.NET page that uses the System.IO.DirectoryInfo.GetFiles() method to get a list of files in a specific directory on our web server. (I simply use this list to build some...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.