Modify ↓
Opened 13 years ago
Closed 13 years ago
#2136 closed Bug (No Bug)
FileSetAttrib adds Archive attribute when System or Hidden attribs are set
Reported by: | MrCreatoR <mscreator@…> | Owned by: | |
---|---|---|---|
Milestone: | Component: | AutoIt | |
Version: | 3.3.8.0 | Severity: | None |
Keywords: | FileSetAttrib Hidden System Archive | Cc: |
Description
Example:
$sFile = @TempDir & '\Test.txt' $hFile = FileOpen($sFile, 2) FileWrite($hFile, 'Text') FileClose($hFile) FileSetAttrib($sFile, '+H') ;~ FileSetAttrib($sFile, '+S') ConsoleWrite('-> Attrib = ' & FileGetAttrib($sFile) & @CRLF) FileDelete($sFile)
Run this and you see that Archive attribute is added for some reason.
If we use attrib command from cmd.exe no extra attribs are added:
Run(@ComSpec & ' /C attrib +H "' & $sFile & '"', '', @SW_HIDE)
Attachments (0)
Change History (2)
comment:1 Changed 13 years ago by MrCreatoR <mscreator@…>
comment:2 Changed 13 years ago by Jpm
- Resolution set to No Bug
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
Sorry, it's not a bug, just realized it, when file created it's already have Archive attribute, so it's not related to FileSetAttrib: