Jak usunąć pojedynczy atrybut (np. Tylko do odczytu) z pliku?

84

Powiedzmy, plik ma następujące atrybuty: ReadOnly, Hidden, Archived, System. Jak mogę usunąć tylko jeden atrybut? (na przykład ReadOnly)

Jeśli użyję tego, usuwa wszystkie atrybuty:

IO.File.SetAttributes("File.txt",IO.FileAttributes.Normal)
MilMike
źródło
odczytaj aktualne atrybuty, zamaskuj atrybut, który chcesz ustawić, ustaw atrybut ...
Mitch Wheat

Odpowiedzi:

109

Z MSDN : możesz usunąć każdy taki atrybut

(ale odpowiedź @ sll tylko dla ReadOnly jest lepsza tylko dla tego atrybutu)

using System;
using System.IO;
using System.Text;
class Test 
{
    public static void Main() 
    {
        string path = @"c:\temp\MyTest.txt";

        // Create the file if it exists.
        if (!File.Exists(path)) 
        {
            File.Create(path);
        }

        FileAttributes attributes = File.GetAttributes(path);

        if ((attributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly)
        {
            // Make the file RW
            attributes = RemoveAttribute(attributes, FileAttributes.ReadOnly);
            File.SetAttributes(path, attributes);
            Console.WriteLine("The {0} file is no longer RO.", path);
        } 
        else 
        {
            // Make the file RO
            File.SetAttributes(path, File.GetAttributes(path) | FileAttributes.Hidden);
            Console.WriteLine("The {0} file is now RO.", path);
        }
    }

    private static FileAttributes RemoveAttribute(FileAttributes attributes, FileAttributes attributesToRemove)
    {
        return attributes & ~attributesToRemove;
    }
}
Preet Sangha
źródło
Co robi ~?
newbieguy
@ newbieguy: To jest jednoargumentowy operator dopełniacza binarnego (inaczej operator bitowy nie). docs.microsoft.com/en-us/dotnet/csharp/language-reference/…
Stefan Steiger,
132

Odpowiedź na Twoje pytanie w tytule dotyczące ReadOnlyatrybutu:

FileInfo fileInfo = new FileInfo(pathToAFile);
fileInfo.IsReadOnly = false;

Aby samodzielnie uzyskać kontrolę nad dowolnym atrybutem, możesz użyć File.SetAttributes()metody method. Link zawiera również przykład.

sll
źródło
1
to działa świetnie! ale tylko dla atrybutu ReadOnly (wiem, że poprosiłem o to w tytule, ale potrzebuję też innych atrybutów)
MilMike
1
@qxxx: masz rację, jak wspomniałem, musisz użyć metody SetAttributes (), aby zmodyfikować inne atrybuty
sll
4
W jednej linijce: nowe FileInfo (fileName) {IsReadOnly = false} .Refresh ()
Ohad Schneider,
2
Czy Refresh () jest konieczne? Ten przykład w witrynie MSDN sugeruje, że tak nie jest, a mój kod (wprawdzie z Mono) działa, jeśli go nie wywołuję.
entheh
1
Odświeżanie () też nie wydaje mi się konieczne.
Jerther
13
string file = "file.txt";
FileAttributes attrs = File.GetAttributes(file);
if (attrs.HasFlag(FileAttributes.ReadOnly))
    File.SetAttributes(file, attrs & ~FileAttributes.ReadOnly);
Rubens Farias
źródło
3
if ((oFileInfo.Attributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly)
    oFileInfo.Attributes ^= FileAttributes.ReadOnly;
alternatefaraz
źródło
1

Dla rozwiązania jednokreskowego (pod warunkiem, że aktualny użytkownik ma dostęp do zmiany atrybutów wspomnianego pliku) oto jak bym to zrobił:

VB.Net

Shell("attrib file.txt -r")

znak minus oznacza „do” removei „ rtylko do odczytu”. jeśli chcesz usunąć również inne atrybuty, możesz zrobić:

Shell("attrib file.txt -r -s -h -a")

Spowoduje to usunięcie atrybutów Tylko do odczytu, Plik systemowy, Ukryty i Archiwum.

jeśli chcesz zwrócić te atrybuty, oto jak:

Shell("attrib file.txt +r +s +h +a")

kolejność nie ma znaczenia.

DO#

Process.Start("cmd.exe", "attrib file.txt +r +s +h +a");

Bibliografia

Ahmad
źródło
Nie są to duże zmiany zawartości , są to dodatki do zawartości i żadne z nich nie jest sprzeczne z duchem przepełnienia stosu. To dobre poprawki, powinny zostać.
George Stocker
3
Wydaje się, że jest to odpowiednik pytania o to, gdzie wlać litr oleju do samochodu, ale powiedziano nam, że należy zanieść go do swojego dealera w celu wymiany oleju. Po co wykonywać polecenie powłoki tylko po to, aby odwrócić bit atrybutu pliku? Odpowiedź technicznie działa, więc nie głosowałem przeciw, ale zrobiłem to w głębi serca.
JMD
@GeorgeStocker Dziękujemy za przejrzenie, doceniam to!
tehDorf
1
/// <summary>
/// Addes the given FileAttributes to the given File.
/// It's possible to combine FileAttributes: FileAttributes.Hidden | FileAttributes.ReadOnly
/// </summary>
public static void AttributesSet(this FileInfo pFile, FileAttributes pAttributes)
{
    pFile.Attributes = pFile.Attributes | pAttributes;
    pFile.Refresh();
}

/// <summary>
/// Removes the given FileAttributes from the given File.
/// It's possible to combine FileAttributes: FileAttributes.Hidden | FileAttributes.ReadOnly
/// </summary>
public static void AttributesRemove(this FileInfo pFile, FileAttributes pAttributes)
{
    pFile.Attributes = pFile.Attributes & ~pAttributes;
    pFile.Refresh();
}

/// <summary>
/// Checks the given File on the given Attributes.
/// It's possible to combine FileAttributes: FileAttributes.Hidden | FileAttributes.ReadOnly
/// </summary>
/// <returns>True if any Attribute is set, False if non is set</returns>
public static bool AttributesIsAnySet(this FileInfo pFile, FileAttributes pAttributes)
{
    return ((pFile.Attributes & pAttributes) > 0);
}

/// <summary>
/// Checks the given File on the given Attributes.
/// It's possible to combine FileAttributes: FileAttributes.Hidden | FileAttributes.ReadOnly
/// </summary>
/// <returns>True if all Attributes are set, False if any is not set</returns>
public static bool AttributesIsSet(this FileInfo pFile, FileAttributes pAttributes)
{
    return (pAttributes == (pFile.Attributes & pAttributes));
}

Przykład:

private static void Test()
{
    var lFileInfo = new FileInfo(@"C:\Neues Textdokument.txt");
    lFileInfo.AttributesSet(FileAttributes.Hidden | FileAttributes.ReadOnly);
    lFileInfo.AttributesSet(FileAttributes.Temporary);
    var lBool1 = lFileInfo.AttributesIsSet(FileAttributes.Hidden);
    var lBool2 = lFileInfo.AttributesIsSet(FileAttributes.Temporary);
    var lBool3 = lFileInfo.AttributesIsSet(FileAttributes.Encrypted);
    var lBool4 = lFileInfo.AttributesIsSet(FileAttributes.ReadOnly | FileAttributes.Temporary);
    var lBool5 = lFileInfo.AttributesIsSet(FileAttributes.ReadOnly | FileAttributes.Encrypted);
    var lBool6 = lFileInfo.AttributesIsAnySet(FileAttributes.ReadOnly | FileAttributes.Temporary);
    var lBool7 = lFileInfo.AttributesIsAnySet(FileAttributes.ReadOnly | FileAttributes.Encrypted);
    var lBool8 = lFileInfo.AttributesIsAnySet(FileAttributes.Encrypted);
    lFileInfo.AttributesRemove(FileAttributes.Temporary);
    lFileInfo.AttributesRemove(FileAttributes.Hidden | FileAttributes.ReadOnly);
}
user2029101
źródło