File size: 1,337 Bytes
44efec5 |
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:
- :ven:func:`Make_Hidden`
- :ven:func:`Make_ReadOnly`
- :ven:func:`Remove_Hidden`
- :ven:func:`Remove_ReadOnly`
.. ven: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
.. ven: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
.. ven: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
.. ven: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
|