Changes between Initial Version and Version 1 of Ticket #3786


Ignore:
Timestamp:
10/02/20 21:12:39 (4 years ago)
Author:
mLipok
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3786

    • Property Version changed from 3.3.14.4 to 3.3.15.3
  • Ticket #3786 – Description

    initial v1  
    11
    22{{{
    3 DirCreate("C:\test"
    4 $dir = DirMove("c:\system volume information", "c:\test", 1)
    5 MsgBox(0, '', $dir); this returns 1 instead of 0 but the folder is not moved as it is protected.
     3#!autoit
     4DirCreate("C:\test")
     5; DirMove returns 1 instead of 0
     6; But the folder is not moved as it is protected.
     7MsgBox(0, '', DirMove("c:\system volume information", "c:\test", 1))
    68}}}