c#删除用户配置文件

时间:2015-08-11 18:10:22

标签: c# user-profile directory.delete

我正在尝试使用c#删除远程服务器上的用户配置文件。我正在以自己的身份运行该程序。如果我浏览到\\ server \ c $ \ Users \,我可以删除目录“User”。它没有错误。如果我使用我用C#编写的程序和下面的代码来尝试删除同一个目录,我就会回到这个例外。

拒绝访问路径'appsFolder.itemdata-ms'。

我的删除操作有问题吗?

Directory.Delete("\\\\server\\c$\\Users\\User\\",true);

2 个答案:

答案 0 :(得分:4)

在不清理注册表的情况下删除用户配置文件文件夹会导致一些不良的副作用,如临时配置文件创建等。 我建议使用可以在userenv.dll

中找到的DeleteProfile函数

我的代码如下:

    internal class Program
{
    [DllImport("userenv.dll", CharSet = CharSet.Unicode, ExactSpelling = false, SetLastError = true)]
    public static extern bool DeleteProfile(string sidString, string profilePath, string omputerName);

    private static void Main(string[] args)
    {
        try
        {
            var username = args[0];
            var principalContext = new PrincipalContext(ContextType.Domain); // Domain => to support local user this should be changed probably, didn't test yet
            var userPrincipal = UserPrincipal.FindByIdentity(principalContext, username);
            if (userPrincipal != null)
            {
                Console.WriteLine("User found");
                var userSid = userPrincipal.Sid;
                Console.WriteLine("User {0} has SID: {1}", username, userSid);
                Console.WriteLine("Will try to DeleteProfile next..");
                DeleteProfile(userSid.ToString(), null, null);
                Console.WriteLine("Done - bye!");
            }
            else
            {
                Console.WriteLine("ERROR! User: {0} not found!", username);
            }
        }
        catch (Exception exception)
        {
            Console.WriteLine(exception);   
        }
    }
}

请注意,此代码仅用于演示目的,应该稳定生产..

欢呼,

-Chris

btw,这里有更多关于MSDN的信息 https://msdn.microsoft.com/en-us/library/windows/desktop/bb762273(v=vs.85).aspx

答案 1 :(得分:1)

您好我正在尝试同样的事情,发现Directory.Delete()无法删除文件,如果文件是隐藏或系统文件。

使用cmd代替删除文件夹。

   public static FileAttributes RemoveAttribute (FileAttributes att, FileAttributes attToRemove)
   {
        return att &  ~attToRemove;
    }

public void DeleteProfileFolder(string file)
 {
    Process process = new Process();
    ProcessStartInfo startInfo = new ProcessStartInfo();
    startInfo.WindowStyle = ProvessWindowsStyle.Hiddenl
    startInfo.FileName = "cmd";
    startInfo.Arguments = "/C rd /S /Q  \"" + file + "\"";
    process.StartInfo = startInfo;
   process.Start();
   process.WaitForExit();
}

public void Deletes(DirectoryInfo baseDir)
{  
     if(! baseDir.Exists)
       return;
   var Dirs = Directory.EnumerateDirectories(baseDir.ToString(),"*.*",SearchOption.TopDirectoryOnly);
   var files = Directory.EnumerateFiles(baseDir.ToString(),"*.*",SearchOption.TopDirectoryOnly);

   foreach(var dir in Dirs)
   {
         DeleteProfileFolder(dir);
    } 
  foreach(var file in files)
 {
      FileAttributes att = File.GetAttributes(f);
      if((att & FileAttributes.Hidden) == FileAttribute.Hidden)
      {  
            att = RemoveAttribute(att, FileAttributes.Hidden);
            File.SetAttributes(file , att);
            File.SetAttributes(File, FileAttributes.Normal)
        }
   File.Delete(file);
  }

}

要调用此

删除( “C:\用户\”); //在本地系统上做到了。

我没有尝试过网络位置,但我认为这样可行。

注意:要完全删除userProfile,我们还需要删除注册表。