9

有关我可以使默认 AppDomain 使用某些程序集的卷影副本吗?,它描述了在特定目录的默认 AppDomain 中激活卷影复制的有效解决方案。

基本上它说使用这些简单的方法:

AppDomain.CurrentDomain.SetShadowCopyPath(aDirectory);
AppDomain.CurrentDomain.SetShadowCopyFiles();

但是因为这里使用的方法被标记为过时,所以我想知道现在完成相同操作的正确方法是什么。警告消息提示:

请调查 AppDomainSetup.ShadowCopyDirectories 的使用情况

AppDomain 有一个称为此类型的成员,SetupInformation它可能会将您带到这个简单的实现

AppDomain.CurrentDomain.SetupInformation.ShadowCopyDirectories = aDirectory;
AppDomain.CurrentDomain.SetupInformation.ShadowCopyFiles = "true";

不幸的是,这没有效果。所以问题是,有没有办法改变当前 appdomain 的 AppDomainSetup 来激活卷影复制?

4

2 回答 2

15

据我所知,这些方法仅适用于 .NET Framework 1.1 版。对于所有更高版本,您不能在主 AppDomain 上启用卷影复制。您需要创建一个新AppDomain的并进行适当的设置。一个简单的方法是创建一个加载器应用程序,它简单地:

可以在应用程序代码项目的影子复制文章中找到一个很好的起点。以下程序摘自文章,稍作修改(未指定缓存路径:

using System;
using System.IO;

namespace Loader
{
    static class Program
    {
        [LoaderOptimization(LoaderOptimization.MultiDomainHost)]
        [STAThread]
        static void Main()
        {
            /* Enable shadow copying */

            // Get the startup path. Both assemblies (Loader and
            // MyApplication) reside in the same directory:
            string startupPath = Path.GetDirectoryName(
                System.Reflection.Assembly
                .GetExecutingAssembly().Location);

            string configFile = Path.Combine(
                startupPath,
                "MyApplication.exe.config");
            string assembly = Path.Combine(
                startupPath,
                "MyApplication.exe");

            // Create the setup for the new domain:
            AppDomainSetup setup = new AppDomainSetup();
            setup.ApplicationName = "MyApplication";
            setup.ShadowCopyFiles = "true"; // note: it isn't a bool
            setup.ConfigurationFile = configFile;

            // Create the application domain. The evidence of this
            // running assembly is used for the new domain:
            AppDomain domain = AppDomain.CreateDomain(
                "MyApplication",
                AppDomain.CurrentDomain.Evidence,
                setup);

            // Start MyApplication by executing the assembly:
            domain.ExecuteAssembly(assembly);

            // After the MyApplication has finished clean up:
            AppDomain.Unload(domain);
        }
    }
}

你不得不:

  • 替换MyApplication.exe为您的可执行程序集的名称。
  • 替换MyApplication为应用程序的名称。
  • 替换MyApplication.exe.config为您的应用程序配置文件的名称。如果你没有,那么你不需要设置它。
于 2013-03-11T15:57:20.400 回答
1

您不需要创建单独的应用程序。您可以在主方法中生成子域或根据AppDomain.CurrentDomain.IsDefaultAppDomain()值调用实际的主方法:

public static void Main(string[] args)
{
    if (AppDomain.CurrentDomain.IsDefaultAppDomain())
    {
        // Loader
        var entryPoint = System.Reflection.Assembly
            .GetExecutingAssembly();

        var applicationName = entryPoint.GetName().Name;
        // Create the setup for the new domain:
        var setup = new AppDomainSetup();
        setup.ApplicationName = applicationName;
        setup.ShadowCopyFiles = "true"; // note: it isn't a bool

        // Create the application domain. The evidence of this
        // running assembly is used for the new domain:
        AppDomain domain = AppDomain.CreateDomain(
           applicationName,
            AppDomain.CurrentDomain.Evidence,
            setup);

        try
        {
            // Start MyApplication by executing the assembly:
            domain.ExecuteAssembly(entryPoint.Location, args);
        }
        finally
        {
            // After the MyApplication has finished clean up:
            AppDomain.Unload(domain);
        }
    }
    else
    {
        // Main
        ActualMain(args);
    }
}

public static int ActualMain(string[] args)
{
     //Hello-world!
}
于 2018-10-08T09:34:08.193 回答