System.IO.FileSystem.SetAttributes C# (CSharp) Méthode

SetAttributes() public abstract méthode

public abstract SetAttributes ( string fullPath, FileAttributes attributes ) : void
fullPath string
attributes FileAttributes
Résultat void
        public abstract void SetAttributes(string fullPath, FileAttributes attributes);

Usage Example

        public static void SetAttributes(string path, FileAttributes fileAttributes)
        {
#if MONO
            if (((uint)fileAttributes & 0x80000000) != 0)
            {
                MonoIOError error;
                Path.Validate(path);

                if (!MonoIO.SetFileAttributes(path, fileAttributes, out error))
                {
                    throw MonoIO.GetException(path, error);
                }
                return;
            }
#endif
            string fullPath = Path.GetFullPath(path);
            FileSystem.SetAttributes(fullPath, fileAttributes);
        }
All Usage Examples Of System.IO.FileSystem::SetAttributes