File size: 1,376 Bytes
1de6f3f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
EditFileAttributes
===============================

https://github.com/theonetruenerd/VenusPackages/blob/main/EditFileAttributes.pkg

The Edit File Attributes library adds the following functions: 

- :py:func:`Make_Hidden`
- :py:func:`Make_ReadOnly`
- :py:func:`Remove_Hidden`
- :py:func:`Remove_ReadOnly`

.. py:function:: Make_Hidden(variable Filename)

  Applies the hidden attribute to the file found at the path specified.

  :params filename: The path to the file that is going to be modified.
  :type filename: Variable
  :return: None
  :rtype: N/A

.. py:function:: Make_ReadOnly(variable Filename)

  Applies the read only attribute to the file found at the path specified.

  :params filename: The path to the file that is going to be modified.
  :type filename: Variable
  :return: None
  :rtype: N/A

.. py:function:: Remove_Hidden(variable Filename)

  Removes the hidden attribute from the file found at the path specified.

  :params filename: The path to the file that is going to be modified.
  :type filename: Variable
  :return: None
  :rtype: N/A

.. py:function:: Remove_ReadOnly(variable Filename)

  Removes the read only attribute from the file found at the path specified.

  :params filename: The path to the file that is going to be modified.
  :type filename: Variable
  :return: None
  :rtype: N/A