SetAttributes() public abstract méthode

public abstract SetAttributes ( string fullPath, FileAttributes attributes ) : void
fullPath string
attributes FileAttributes
Résultat void
        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);
        }
Exemple #2
0
 public static void SetAttributes(string path, FileAttributes fileAttributes)
 => FileSystem.SetAttributes(Path.GetFullPath(path), fileAttributes);
Exemple #3
0
        public static void SetAttributes(string path, FileAttributes fileAttributes)
        {
            string fullPath = Path.GetFullPath(path);

            FileSystem.SetAttributes(fullPath, fileAttributes);
        }