// Copyright (C) 2024, The Duplicati Team // https://duplicati.com, hello@duplicati.com // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. using System; using System.IO; using System.Collections.Generic; using Duplicati.Library.Interface; namespace Duplicati.Library.Common.IO { /// /// Interface for wrapping System.IO operations. /// public interface ISystemIO { IFileEntry DirectoryEntry(string path); IFileEntry DirectoryEntry(DirectoryInfo dirInfo); void DirectoryCreate(string path); void DirectoryDelete(string path, bool recursive); bool DirectoryExists(string path); void DirectoryMove(string sourceDirName, string destDirName); void DirectorySetLastWriteTimeUtc(string path, DateTime time); void DirectorySetCreationTimeUtc(string path, DateTime time); IFileEntry FileEntry(string path); IFileEntry FileEntry(FileInfo fileInfo); void FileMove(string source, string target); void FileDelete(string path); void FileCopy(string source, string target, bool overwrite); void FileSetLastWriteTimeUtc(string path, DateTime time); void FileSetCreationTimeUtc(string path, DateTime time); DateTime FileGetLastWriteTimeUtc(string path); DateTime FileGetCreationTimeUtc(string path); bool FileExists(string path); long FileLength(string path); FileStream FileOpenRead(string path); FileStream FileOpenWrite(string path); FileStream FileCreate(string path); FileAttributes GetFileAttributes(string path); void SetFileAttributes(string path, FileAttributes attributes); void CreateSymlink(string symlinkfile, string target, bool asDir); string GetSymlinkTarget(string path); string PathGetDirectoryName(string path); string PathGetFileName(string path); string PathGetExtension(string path); string PathChangeExtension(string path, string extension); string PathCombine(params string[] paths); string PathGetFullPath(string path); string GetPathRoot(string path); string[] GetDirectories(string path); string[] GetFiles(string path); string[] GetFiles(string path, string searchPattern); DateTime GetCreationTimeUtc(string path); DateTime GetLastWriteTimeUtc(string path); IEnumerable EnumerateFileSystemEntries(string path); IEnumerable EnumerateFiles(string path); IEnumerable EnumerateFiles(string path, string searchPattern, SearchOption searchOption); IEnumerable EnumerateDirectories(string path); // Enumerate FileEntries of files and directories // This is more efficient than enumerating file names when metadata is needed IEnumerable EnumerateFileEntries(string path); void SetMetadata(string path, Dictionary metdata, bool restorePermissions); Dictionary GetMetadata(string path, bool isSymlink, bool followSymlink); } }