系统要求我编写执行以下操作的应用程序
我的问题是,我从未在程序中完成过将NTFS权限从继承更改为显式以及更改ACL的第二部分。 我以IT管理员的身份工作,只偶尔编写代码。 我的代码当前看起来像这样(第一部分,它是一个非常基本的图形C#应用程序的一部分):
private void Button1_Click(object sender, EventArgs e)
{
CSVSpeicherort.ShowDialog();
string PathToCSV = CSVSpeicherort.FileName;
txtBox_CSVPath.Text = PathToCSV;
StreamReader sr = new StreamReader(PathToCSV, Encoding.GetEncoding(1252));
string[] Lines = new string[TotalLines(PathToCSV)];
string[] PathsToChangeACLs = new string[TotalLines(PathToCSV)];
string[] PermissionHolder = new string[TotalLines(PathToCSV)];
string temp1, temp2 = "";
for(int j = 0;j<Lines.Length;j++)
{
Lines[j] = sr.ReadLine();
}
for (int k = 0; k < Lines.Length; k++)
{
PathsToChangeACLs[k] = Lines[k].Substring(0, returndelimiterposition(Lines[k]));
int z = Convert.ToInt32(returndelimiterposition(Lines[k])) + Convert.ToInt32(1);
PermissionHolder[k] = Lines[k].Substring(z, ((Lines[k].Length-1)-returndelimiterposition(Lines[k])));
}
}
int TotalLines(string filepath)
{
using (StreamReader r = new StreamReader(filepath))
{
int i = 0;
while (r.ReadLine() != null) { i++; }
return i;
}
}
int returndelimiterposition(string Line)
{
for (int l = 0; l < Line.Length; l++)
{
if (Line[l].Equals(';'))
{
return l;
}
else
{
}
}
return 0;
如何实现第二部分?