带有 .NET Core 的 Linux/Unix 上的文件权限



我正在尝试学习如何使用.NET Core在Linux/Unix上设置文件权限。 我已经在这里找到了一个问题,为我指明了System.IO.FileSystem的方向,但我似乎找不到任何有关如何使用它的文档。

简而言之,我想从仅在Linux上运行的.NET Core应用程序中chmod一个文件644,但不知如何继续。

目前,.NET Core中没有内置的API。但是,.NET Core 团队正在努力使Mono.Posix在 .NET Core 上可用。这将公开用于在托管代码中执行此类操作的 API。请参阅 https://github.com/dotnet/corefx/issues/15289 和 https://github.com/dotnet/corefx/issues/3186。您可以在此处试用此 API 的早期版本:https://www.nuget.org/packages/Mono.Posix.NETStandard/1.0.0-beta1

var unixFileInfo = new Mono.Unix.UnixFileInfo("test.txt");
// set file permission to 644
unixFileInfo.FileAccessPermissions =
FileAccessPermissions.UserRead | FileAccessPermissions.UserWrite
| FileAccessPermissions.GroupRead
| FileAccessPermissions.OtherRead;

如果您不想使用 Mono.Posix,可以通过调用本机代码来实现相同的功能。使用 P/Invoke,您可以从libc调用chmod函数。有关本机 API 的更多详细信息,请参阅man 2 chmod

using System;
using System.IO;
using System.Runtime.InteropServices;
using static System.Console;
class Program
{
[DllImport("libc", SetLastError = true)]
private static extern int chmod(string pathname, int mode);
// user permissions
const int S_IRUSR = 0x100;
const int S_IWUSR = 0x80;
const int S_IXUSR = 0x40;
// group permission
const int S_IRGRP = 0x20;
const int S_IWGRP = 0x10;
const int S_IXGRP = 0x8;
// other permissions
const int S_IROTH = 0x4;
const int S_IWOTH = 0x2;
const int S_IXOTH = 0x1;
static void Main(string[] args)
{
WriteLine("Setting permissions to 0755 on test.sh");
const int _0755 =
S_IRUSR | S_IXUSR | S_IWUSR
| S_IRGRP | S_IXGRP
| S_IROTH | S_IXOTH;
WriteLine("Result = " + chmod(Path.GetFullPath("test.sh"), (int)_0755));
WriteLine("Setting permissions to 0644 on sample.txt");
const int _0644 =
S_IRUSR | S_IWUSR
| S_IRGRP
| S_IROTH;
WriteLine("Result = " + chmod(Path.GetFullPath("sample.txt"), _0644));
WriteLine("Setting permissions to 0600 on secret.txt");
const int _0600 = S_IRUSR | S_IWUSR;
WriteLine("Result = " + chmod(Path.GetFullPath("secret.txt"), _0600));
}
}

我通过启动一个新进程并执行 bashchmod命令解决了这个问题。

例:

public static void Exec(string cmd)
{
var escapedArgs = cmd.Replace(""", "\"");

using var process = new Process
{
StartInfo = new ProcessStartInfo
{
RedirectStandardOutput = true,
UseShellExecute = false,
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden,
FileName = "/bin/bash",
Arguments = $"-c "{escapedArgs}""
}
};
process.Start();
process.WaitForExit();
}

然后:

Exec("chmod 644 /path/to/file.txt");

您还可以使用此Exec方法来运行任何其他类型的 bash 命令。

我知道这个问题有点老了,但对于 .NET 7 及更高版本,有一个更简单的 API。

File.SetUnixFileMode(path, UnixFileMode.UserRead | UnixFileMode.UserWrite);

下面是一个简单的 chmod 函数,可以在 c# 中使用,无需任何关联。

// Returns true if success and false otherwise
// permissions can be an int or a string. For example it can also be +x, -x etc..
bool Chmod(string filePath, string permissions = "700", bool recursive = false)
{
string cmd;
if (recursive)
cmd = $"chmod -R {permissions} {filePath}";
else
cmd = $"chmod {permissions} {filePath}";
try
{
using (Process proc = Process.Start("/bin/bash", $"-c "{cmd}""))
{
proc.WaitForExit();
return proc.ExitCode == 0;
}
}
catch
{
return false;
}
}

相关内容

  • 没有找到相关文章

最新更新