mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 09:14:58 -06:00
17.01
This commit is contained in:
@@ -128,6 +128,15 @@ bool SetFileAttrib(CFSTR path, DWORD attrib)
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
bool SetFileAttrib_PosixHighDetect(CFSTR path, DWORD attrib)
|
||||
{
|
||||
if ((attrib & 0xF0000000) != 0)
|
||||
attrib &= 0x3FFF;
|
||||
return SetFileAttrib(path, attrib);
|
||||
}
|
||||
|
||||
|
||||
bool RemoveDir(CFSTR path)
|
||||
{
|
||||
#ifndef _UNICODE
|
||||
|
||||
Reference in New Issue
Block a user