System.Configuration.ConfigurationSettings不包含appSettings的定义

时间:2011-04-29 16:56:26

标签: .net c#-4.0

我是编程新手,尝试将文件从一个位置复制到另一个位置,尝试在Visual Studio 2010中使用app.config文件。

配置文件是

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="sourcePath" value="C:\Users\Public\TestFolder"/>
<add key="targetPath" value="C:\Users\Public\TestFolder\SubDir"/>
</appSettings>
</configuration>

复制文件的代码是

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace FileCopy
{
    class FileCopy
    {
        class SimpleFileCopy
        {
            static void Main()
            {
                string fileName = "test.txt";
                string sourcePath = System.Configuration.ConfigurationSettings.appSettings["sourcePath"];
                string targetPath = System.Configuration.ConfigurationSettings.appSettings["targetPath"];

                // Use Path class to manipulate file and directory paths.
                string sourceFile = System.IO.Path.Combine(sourcePath, fileName);
                string destFile = System.IO.Path.Combine(targetPath, fileName);

                // To copy a folder's contents to a new location:
                // Create a new target folder, if necessary.
                if (!System.IO.Directory.Exists(targetPath))
                {
                    System.IO.Directory.CreateDirectory(targetPath);
                }

                // To copy a file to another location and 
                // overwrite the destination file if it already exists.
                System.IO.File.Copy(sourceFile, destFile, true);

                // To copy all the files in one directory to another directory.
                // Get the files in the source folder. (To recursively iterate through
                // all subfolders under the current directory, see
                // "How to: Iterate Through a Directory Tree.")
                // Note: Check for target path was performed previously
               //       in this code example.
                if (System.IO.Directory.Exists(sourcePath))
                {
                    string[] files = System.IO.Directory.GetFiles(sourcePath);

                    // Copy the files and overwrite destination files if they already  exist.
                    foreach (string s in files)
                    {
                        // Use static Path methods to extract only the file name from the path.
                        fileName = System.IO.Path.GetFileName(s);
                        destFile = System.IO.Path.Combine(targetPath, fileName);
                        System.IO.File.Copy(s, destFile, true);
                    }
                }
                else
                {
                    Console.WriteLine("Source path does not exist!");
                }

                // Keep console window open in debug mode.
                Console.WriteLine("Press any key to exit.");
                Console.ReadKey();

            }
        }
    }
}

我在构建解决方案时遇到错误,该解决方案显示'System.Configuration.ConfigurationSettings'不包含'appSettings'的定义

我做错了什么? 谢谢您的帮助。

1 个答案:

答案 0 :(得分:3)

您需要使用配置管理器:

System.Configuration.ConfigurationManager.AppSettings["sourcePath"]