localsystem账号无法访问网络映射文件夹。
谢谢

解决方案 »

  1.   


    using System;
    using System.IO;class Test 
    {
        public static void Main() 
        {
            // Specify the directories you want to manipulate.
            DirectoryInfo di = new DirectoryInfo("\\\\MyServer\\MyShare");//这里写网络路径即可
            try 
            {
                // Determine whether the directory exists.
                if (di.Exists) 
                {
                    // Indicate that the directory already exists.
                    Console.WriteLine("That path exists already.");
                    return;
                }            // Try to create the directory.
                di.Create();
                Console.WriteLine("The directory was created successfully.");            // Delete the directory.
                di.Delete();
                Console.WriteLine("The directory was deleted successfully.");        } 
            catch (Exception e) 
            {
                Console.WriteLine("The process failed: {0}", e.ToString());
            } 
            finally {}
        }
      

  2.   

    模拟登录
    http://blog.csdn.net/fei997yang/archive/2008/05/15/2449771.aspx