A
download IFileSystem.cs
Language: C#
LOC: 11
Project Info
CruiseControl.NET(ccnet)
Server: SourceForge (SVN)
Type: svn
...et\trunk\project\core\util\
   AccurateTimer.cs
   ConsoleTraceListener.cs
   DateTimeProvider.cs
   DateUtil.cs
   ExecutionEnvironment.cs
   FileChangedWatcher.cs
   ...wareMultiTransformer.cs
   HtmlExceptionFormatter.cs
   HttpWrapper.cs
   IFileDirectoryDeleter.cs
   IFileSystem.cs
   IFileTransformer.cs
   IFileWatcher.cs
   IMultiTransformer.cs
   IoService.cs
   IRegistry.cs
   IStringFormatter.cs
   ITransformer.cs
   LogFileTraceListener.cs
   LogUtil.cs
   NotifierList.cs
   PathUtil.cs
   ProcessArgumentBuilder.cs
   ProcessExecutor.cs
   ProcessInfo.cs
   ProcessReader.cs
   ProcessResult.cs
   ReflectionUtil.cs
   Registry.cs
   StringUtil.cs
   SystemIoFileSystem.cs
   SystemPath.cs
   TempFileUtil.cs
   TestTraceListener.cs
   Timeout.cs
   TimeoutSerializer.cs
   ...outSerializerFactory.cs
   TimeUnits.cs
   Utf8StringWriter.cs
   WildCardPath.cs
   XmlFragmentWriter.cs
   XmlUtil.cs
   XslTransformer.cs

using System.IO;

namespace ThoughtWorks.CruiseControl.Core.Util
{
	public interface IFileSystem
	{
		void Copy(string sourcePath, string destPath);
		void Save(string file, string content);
		TextReader Load(string file);
		bool FileExists(string file);
	}
}

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us