Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-04-25 20:56:59 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-04-25 20:56:59 +0300
commit5e17f0a343c4ea2df05428954070a52808053626 (patch)
treee4ae0e6a226fdb81f2da0b7f7e68ab9eb0654625 /FtpServer/IFileSystemHandler.cs
parent329a308e53ec35607008fb1cf2302645fc8ce083 (diff)
chown operations support for FTP server
Diffstat (limited to 'FtpServer/IFileSystemHandler.cs')
-rw-r--r--FtpServer/IFileSystemHandler.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/FtpServer/IFileSystemHandler.cs b/FtpServer/IFileSystemHandler.cs
index c84e8426..e54adb56 100644
--- a/FtpServer/IFileSystemHandler.cs
+++ b/FtpServer/IFileSystemHandler.cs
@@ -13,6 +13,7 @@ namespace mooftpserv
public bool IsDirectory;
public long Size;
public DateTime LastModifiedTimeUtc;
+ public string Mode;
}
/// <summary>
@@ -197,6 +198,8 @@ namespace mooftpserv
/// A relative or absolute path.
/// </param>
ResultOrError<DateTime> GetLastModifiedTimeUtc(string path);
+
+ ResultOrError<bool> ChmodFile(string mode, string path);
}
}