2

これで問題は解決しました。今まで見たことのない間違い。

私は一般的なコーディングにかなり慣れておらず、C#にも非常に慣れていないので、おそらく単純なものが欠けています。ログインWebサイトからデータを取得し、そのデータをローカルハードドライブ上のファイルに保存するプログラムを作成しました。データはソーラーモジュールの電力とエネルギーのデータであり、各モジュールには独自のファイルがあります。メインのワークステーションでWindowsVistaを実行していますが、プログラムは正常に動作します。Server 2003を実行しているマシンでプログラムを実行すると、新しいデータがファイルに追加されるのではなく、ファイルに元々含まれていたデータが上書きされるだけです。

ダウンロードしているデータは、一度に7日間のcsv形式のテキストです。プログラムを1日1回実行して、新しい日のデータを取得し、ローカルファイルに追加します。プログラムを実行するたびに、ローカルファイルは新しくダウンロードされたデータのコピーであり、古いデータは含まれていません。Webサイトのデータは1日1回しか更新されないため、ローカルファイルの最終日のデータやローカルファイルの初日のデータを削除してテストを行っています。ファイルを変更してプログラムを実行するときはいつでも、ファイルにはダウンロードされたデータだけが含まれています。

なぜそれが機能しなかったのかをテストするために何か新しいことを試みたところ、エラーの原因を見つけたと思います。ローカルマシンで実行すると、「filePath」変数が「」に設定されました。サーバーとローカルマシンで「filePath」を@「C:\ SolarYard Data」に変更しました。両方のマシンで、ファイルが見つからないという例外をキャッチし、同じディレクトリに新しいファイルを作成して、オリジナル。なぜこれが起こるのかについて誰かが考えていますか?

コードは、各データセットをダウンロードし、ローカルファイルに新しいデータを追加するセクションです。

int i = 0;
string filePath = "C:/Solar Yard Data/";

string[] filenamesPower = new string[]
{
    "inverter121201321745_power",
    "inverter121201325108_power",
    "inverter121201326383_power",
    "inverter121201326218_power",
    "inverter121201323111_power",
    "inverter121201324916_power",
    "inverter121201326328_power",
    "inverter121201326031_power",
    "inverter121201325003_power",
    "inverter121201326714_power",
    "inverter121201326351_power",
    "inverter121201323205_power",
    "inverter121201325349_power",
    "inverter121201324856_power",
    "inverter121201325047_power",
    "inverter121201324954_power",
};

// download and save every module's power data
foreach (string url in modulesPower)
{

    // create web request and download data
    HttpWebRequest req_csv = (HttpWebRequest)HttpWebRequest.Create(String.Format(url, auth_token));
    req_csv.CookieContainer = cookie_container;
    HttpWebResponse res_csv = (HttpWebResponse)req_csv.GetResponse();

    // save the data to files
    using (StreamReader sr = new StreamReader(res_csv.GetResponseStream()))
    {
        string response = sr.ReadToEnd();
        string fileName = filenamesPower[i] + ".csv";

        // save the new data to file
        try
        {
            int startIndex = 0;          // start index for substring to append to file
            int searchResultIndex = 0;   // index returned when searching downloaded data for last entry of data on file
            string lastEntry;            // will hold the last entry in the current data
            //open existing file and find last entry
            using (StreamReader sr2 = new StreamReader(fileName))
            {
                //get last line of existing data
                string fileContents = sr2.ReadToEnd();
                string nl = System.Environment.NewLine;  // newline string
                int nllen = nl.Length;                   // length of a newline
                if (fileContents.LastIndexOf(nl) == fileContents.Length - nllen)
                {
                    lastEntry = fileContents.Substring(0, fileContents.Length - nllen).Substring(fileContents.Substring(0, fileContents.Length - nllen).LastIndexOf(nl) + nllen);
                }
                else
                {
                    lastEntry = fileContents.Substring(fileContents.LastIndexOf(nl) + 2);
                }

                // search the new data for the last existing line
                searchResultIndex = response.LastIndexOf(lastEntry);
            }

            // if the downloaded data contains the last record on file, append the new data
            if (searchResultIndex != -1)
            {
                startIndex = searchResultIndex + lastEntry.Length;
                File.AppendAllText(filePath + fileName, response.Substring(startIndex+1));
            }
            // else append all the data
            else
            {
                Console.WriteLine("The last entry of the existing data was not found\nin the downloaded data. Appending all data.");
                File.AppendAllText(filePath + fileName, response.Substring(109));  // the 109 index removes the file header from the new data
            }
        }
        // if there is no file for this module, create the first one
        catch (FileNotFoundException e)
        {
            // write data to file
            Console.WriteLine("File does not exist, creating new data file.");
            File.WriteAllText(filePath + fileName, response);
            //Debug.WriteLine(response);
        }

    }

    Console.WriteLine("Power file " + (i + 1) + " finished.");
    //Debug.WriteLine("File " + (i + 1) + " finished.");
    i++;
}

Console.WriteLine("\nPower data finished!\n");
4

1 に答える 1

0

おそらく問題を解決すると思ういくつかの提案最初にfilePath文字列を変更します

string filePath = @ "C:\ Solar Yard Data \";

フルパスで文字列を作成する

String fullFilePath = filePath + fileName;

次に、存在するかどうかを確認し、存在しない場合は作成します

if (!File.Exists(fullFilePath ))
     File.Create(fullFilePath );

ファイルへのフルパスをstreamReaderに入れます

using (StreamReader sr2 = new StreamReader(fullFilePath))
于 2012-06-29T18:34:56.200 に答える