in reply to How to remove COMPRESSED attribute with Win32::File?
Off:Win32::File::GetAttributes($path, $attr); $attr |= COMPRESSED; Win32::File::SetAttributes($path, $attr);
Win32::File::GetAttributes($path, $attr); $attr &= ~COMPRESSED; Win32::File::SetAttributes($path, $attr);
|
|---|