123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- using System;
- using System.IO;
- using System.Text;
- using System.Xml;
- namespace Wayne.Lib.IO
- {
-
-
-
-
- public interface IFileSupport
- {
-
-
-
-
-
-
-
-
-
-
- [System.Diagnostics.DebuggerStepThrough]
- Stream Open(string fileName, FileMode fileMode, FileAccess fileAccess, FileShare fileShare, int retries, int delayBetweenRetries);
-
-
-
-
-
-
-
-
- Stream Open(string fileName, FileMode fileMode, FileAccess fileAccess, FileShare fileShare);
-
-
-
-
-
-
-
- [System.Diagnostics.DebuggerStepThrough]
- void Move(string sourceFileName, string destinationFileName, int retries, int delayBetweenRetries);
-
-
-
-
-
- [System.Diagnostics.DebuggerStepThrough]
- void Move(string sourceFileName, string destinationFileName);
-
-
-
-
-
-
-
- [System.Diagnostics.DebuggerStepThrough]
- void MoveDirectory(string sourceDirName, string destDirName, int retries, int delayBetweenRetries);
-
-
-
-
-
- [System.Diagnostics.DebuggerStepThrough]
- void MoveDirectory(string sourceDirName, string destDirName);
-
-
-
-
-
-
- [System.Diagnostics.DebuggerStepThrough]
- void Delete(string fileName, int retries, int delayBetweenRetries);
-
-
-
-
- [System.Diagnostics.DebuggerStepThrough]
- void Delete(string fileName);
-
-
-
- ISecureDeleteSupport SecureDeleteSupport { get; set; }
-
-
-
- IFileSupportExtension FileSupportExtension { get; set; }
-
-
-
- IPaths Paths { get;}
-
-
-
-
-
-
-
- void SecureDelete(string fileName, out bool sDeleteOK, int retries, int delayBetweenRetries);
-
-
-
-
-
- void SecureDelete(string fileName, out bool sDeleteOK);
-
-
-
-
-
-
- void Copy(string sourceFileName, string destinationFileName, bool overwrite);
-
-
-
-
-
-
-
-
- [System.Diagnostics.DebuggerStepThrough]
- void Copy(string sourceFileName, string destinationFileName, bool overwrite, int retries, int delayBetweenRetries);
-
-
-
-
- byte[] LoadToByteArray(string fileName);
-
-
-
-
- string LoadToString(string fileName);
-
-
-
-
-
- string LoadToString(string fileName, System.Text.Encoding encoding);
-
-
-
-
- string[] LoadToStringArray(string fileName);
-
-
-
-
-
- string[] LoadToStringArray(string fileName, System.Text.Encoding encoding);
-
-
-
-
-
- void SaveToFile(string fileName, string text);
-
-
-
-
-
- void SaveToFile(string fileName, string[] lines);
-
-
-
-
-
-
- void SaveToFile(string fileName, string text, System.Text.Encoding encoding);
-
-
-
-
-
-
- void SaveToFile(string fileName, string[] lines, System.Text.Encoding encoding);
-
-
-
-
-
- void LoadXml(XmlDocument xmlDocument, string fileName);
-
-
-
-
-
-
- void LoadXml(XmlDocument xmlDocument, string fileName, System.Text.Encoding encoding);
-
-
-
-
- DateTime GetCreationTime(string fileName);
-
-
-
-
-
- void SetCreationTime(string fileName, DateTime dateTime);
-
-
-
-
- DateTime GetLastAccessTime(string fileName);
-
-
-
-
-
- void SetLastAccessTime(string fileName, DateTime dateTime);
-
-
-
-
- DateTime GetLastWriteTime(string fileName);
-
-
-
-
-
- void SetLastWriteTime(string fileName, DateTime dateTime);
-
-
-
-
-
- bool FileExists(string fileName);
-
-
-
-
-
- bool DirectoryExists(string path);
-
-
-
-
-
- bool EnsureDirectoryExists(string path);
-
-
-
-
- [Obsolete("Use EnsureDirectoryExists() instead.")]
- void EnsureDirectoriesExists(string directoryName);
-
-
-
-
-
-
- bool RemoveDirectory(string path, bool onlyIfEmpty);
-
-
-
-
-
-
- void CopyDirectory(string sourceDir, string destinationDir, bool recursive);
-
-
-
-
-
-
- string[] GetFiles(string path, string searchPattern);
-
-
-
-
-
-
-
- string[] GetFiles(string path, string searchPattern, bool recursive);
-
-
-
-
-
- string[] GetDirectories(string path);
-
-
-
-
-
-
- string[] GetDirectories(string path, bool recursive);
-
-
-
-
-
- bool IsValidFileName(string fileName);
-
-
-
-
-
- bool IsValidPathName(string pathName);
- }
- }
|