User Tools

Site Tools


multiple_20file_20operations

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
multiple_20file_20operations [2018/04/17 17:47] – Added syntax highlighting tbest3112multiple_20file_20operations [2024/01/05 00:21] (current) – external edit 127.0.0.1
Line 29: Line 29:
         shfo.hWnd% = @hwnd%         shfo.hWnd% = @hwnd%
         shfo.wFunc% = FO_DELETE         shfo.wFunc% = FO_DELETE
-        shfo.pFrom% = !^afsp$+        shfo.pFrom% = PTR(afsp$)
         SYS "SHFileOperation", shfo{}         SYS "SHFileOperation", shfo{}
         ENDPROC         ENDPROC
Line 55: Line 55:
         shfo.hWnd% = @hwnd%         shfo.hWnd% = @hwnd%
         shfo.wFunc% = FO_COPY         shfo.wFunc% = FO_COPY
-        shfo.pFrom% = !^from$ +        shfo.pFrom% = PTR(from$) 
-        shfo.pTo% = !^dest$+        shfo.pTo% = PTR(dest$)
         SYS "SHFileOperation", shfo{}         SYS "SHFileOperation", shfo{}
         ENDPROC         ENDPROC
Line 77: Line 77:
         shfo.hWnd% = @hwnd%         shfo.hWnd% = @hwnd%
         shfo.wFunc% = FO_MOVE         shfo.wFunc% = FO_MOVE
-        shfo.pFrom% = !^from$ +        shfo.pFrom% = PTR(from$) 
-        shfo.pTo% = !^dest$+        shfo.pTo% = PTR(dest$)
         SYS "SHFileOperation", shfo{}         SYS "SHFileOperation", shfo{}
         ENDPROC         ENDPROC
multiple_20file_20operations.1523987249.txt.gz · Last modified: 2024/01/05 00:17 (external edit)