EditFileAttributes

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

The Edit File Attributes library adds the following functions:

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.

Returns:

None

Return type:

N/A

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.

Returns:

None

Return type:

N/A

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.

Returns:

None

Return type:

N/A

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.

Returns:

None

Return type:

N/A