当前位置: 首页>>代码示例>>C#>>正文


C# FileSystem.GetDirectory方法代码示例

本文整理汇总了C#中System.IO.FileSystem.GetDirectory方法的典型用法代码示例。如果您正苦于以下问题:C# FileSystem.GetDirectory方法的具体用法?C# FileSystem.GetDirectory怎么用?C# FileSystem.GetDirectory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.IO.FileSystem的用法示例。


在下文中一共展示了FileSystem.GetDirectory方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: before_all

        public void before_all()
        {
            // setup
            _command = new NewCommand();
            _fileSystem = new FileSystem();
            _zipService = new ZipFileService(_fileSystem);
            _commandInput = new NewCommandInput();

            tmpDir = FileSystem.Combine("Templating", Guid.NewGuid().ToString());
            repoZip = FileSystem.Combine("Templating", "repo.zip");
            _zipService.ExtractTo(repoZip, tmpDir, ExplodeOptions.DeleteDestination);

            solutionFile = FileSystem.Combine("Templating", "sample", "myproject.txt");
            oldContents = _fileSystem.ReadStringFromFile(solutionFile);
            solutionDir = _fileSystem.GetDirectory(solutionFile);

            _commandInput.GitFlag = "file:///{0}".ToFormat(_fileSystem.GetFullPath(tmpDir).Replace("\\", "/"));
            _commandInput.ProjectName = "MyProject";
            _commandInput.SolutionFlag = solutionFile;
            _commandInput.OutputFlag = solutionDir;
            _commandInput.RakeFlag = "init.rb";

            _commandResult = _command.Execute(_commandInput);

            newSolutionContents = _fileSystem.ReadStringFromFile(solutionFile);
        }
开发者ID:wbinford,项目名称:fubu,代码行数:26,代码来源:NewCommandEndToEndTester.cs

示例2: Start

 public void Start()
 {
     //TODO: how to find the services dir
     //TODO: how to get the bottles dir
     //TODO: do we need a custom config?
     string baseDir = ConfigurationManager.AppSettings["BottlesDirectory"]
                      ?? Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Bottles");
     _fs = new DotNetFileSystem();
     Magnum.FileSystem.Directory bottlesDir = _fs.GetDirectory(baseDir);
     _watcher = new BottleWatcher();
     _cleanup = _watcher.Watch(bottlesDir.Name.GetPath(), CopyToServices);
 }
开发者ID:paulbatum,项目名称:Topshelf,代码行数:12,代码来源:BottleService.cs


注:本文中的System.IO.FileSystem.GetDirectory方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。