문제

How can I create or mark a file as hidden using .NET?

도움이 되었습니까?

해결책

Use File.SetAttributes. "Hidden" is just one of many available attributes.

다른 팁

You set the hidden attribute of the file.

There are several ways of doing so - with File.SetAttributes or FileInfo.Attributes, you simply set the FileAttributes enumeration flag to hidden:

string path = @"c:\myfile.txt";
File.SetAttributes(path, FileAttributes.Hidden);

I assume you are referring to setting the file attribute to hidden in the file system. Please take a look at this link

If it's an existing file, i.e. not one you've just created, don't just:

File.SetAttributes(path, FileAttributes.Hidden);

or certain other attributes it may have will be lost, so rather you should:

File.SetAttributes(path, File.GetAttributes(path) | FileAttributes.Hidden);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top