gpt4 book ai didi

c# - 在 C# 中以编程方式隐藏目录

转载 作者:行者123 更新时间:2023-11-30 19:51:31 25 4
gpt4 key购买 nike

我想在 Windows Vista 中创建一个隐藏目录。不只是从 View 中完全隐藏。就像您从文件夹选项中设置的一样。我按照我看到的例子尝试了一些东西。只是我稍微修改了一下..

这是我所有的代码组合。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
public partial class hideme : Form
{
public hideme()
{
InitializeComponent();
}

private void button3_Click(object sender, EventArgs e)
{
if (PasswordTextBox.Text == "test")
{
EnableButton.Visible = true;
DisableButton.Visible = true;
}
else
{
MessageBox.Show("Wrong", "Attention");
Application.Exit();
}
}


private void EnableButton_Click(object sender, EventArgs e)
{
//System.IO.FileInfo dir = new System.IO.FileInfo("C:\\Users\\logickills\\Pictures\\system");
string path = "C:\\Users\\chris\\Pictures\\system";
FileInfo FIh1 = new FileInfo(Environment.CurrentDirectory + @"\Files\File2.txt");
FIh1.Attributes = FileAttributes.Hidden;
}

private void DisableButton_Click(object sender, EventArgs e)
{

}

private void PasswordTextBox_TextChanged(object sender, EventArgs e)
{

}
}
}

这与我之前创建的对话框一致 here .输入密码后显示的两个按钮用于显示和隐藏该目录。

最佳答案

Attribute 属性是属性的组合,因此您需要将 Hidden 属性与项目已有的任何属性组合起来:

FIh1.Attributes = FIh1.Attributes  | System.IO.FileAttributes.Hidden;

如果你想删除它,你可以使用下面的代码:

if ((FIh1.Attributes & System.IO.FileAttributes.Hidden) == System.IO.FileAttributes.Hidden)
{
FIh1.Attributes = FIh1.Attributes ^ System.IO.FileAttributes.Hidden;
}

如果您重复调用 FIh1.Attributes = FIh1.Attributes ^ System.IO.FileAttributes.Hidden;,您将每隔两次打开和关闭隐藏属性。

关于c# - 在 C# 中以编程方式隐藏目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/985091/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com