%AllUsersProfile%(%PROGRAMDATA%)给出重复的文件路径

时间:2012-12-04 20:26:26

标签: c# .net filepath path-variables

我有一个用C#编写的应用程序,我试图将一些信息写入隐藏的ProgramData,以便从应用程序的前端和后端访问相同的连接字符串。

我使用路径变量访问目录,如下所示:

private bool ProgramDataWriteFile(string contentToWrite)
        {
            try
            {

                string strProgramDataPath = "%PROGRAMDATA%";
                string directoryPath = Environment.ExpandEnvironmentVariables(strProgramDataPath) + "\\MyApp\\";
                string path = Environment.ExpandEnvironmentVariables(strProgramDataPath)+"\\MyApp\\ConnectionInfo.txt";

                if (Directory.Exists(directoryPath))
                {
                    System.IO.StreamWriter file = new System.IO.StreamWriter(path);
                    file.Write(contentToWrite);
                    file.Close();
                }
                else
                {
                    Directory.CreateDirectory(directoryPath);
                    System.IO.StreamWriter file = new System.IO.StreamWriter(path);
                    file.Write(contentToWrite);
                    file.Close();
                }

                return true;
            }
            catch (Exception e)
            {
            }
            return false;
        }

这似乎工作正常。但是,我的问题是,当我使用此路径变量时:%AllUsersProfile%(%PROGRAMDATA%) 相反,它扩展为非法(和冗余)文件路径:C:\ProgramData(C:\ProgramData)\ 但是,我认为后一个路径变量是正确的全名。我只是错误地使用它吗?我需要确保所有用户都可以访问此连接信息,只需使用%PROGRAMDATA%允许吗?我正在使用Windows 7以防万一。

1 个答案:

答案 0 :(得分:5)

来自here

  

FOLDERID_ProgramData / System.Environment.SpecialFolder.CommonApplicationData

     

用户永远不想在资源管理器中浏览此处,此处更改的设置应该影响计算机上的每个用户。在Windows Vista的安装上,默认位置是%systemdrive%\ ProgramData,这是一个隐藏文件夹。您需要创建目录并在安装时设置所需的ACL。

所以,只需使用%PROGRAMDATA%,或者更好的是:

Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData)