win32file.MoveFileWithProgress
MoveFileWithProgress(ExistingFileName, NewFileName, ProgressRoutine, Data, Flags, Transaction)
Moves a file, and reports progress to a callback function
Parameters
ExistingFileName : string
File or directory to be movedNewFileName : string
Destination, can be None if flags contain MOVEFILE_DELAY_UNTIL_REBOOTProgressRoutine=None : CopyProgressRoutine
A python function that receives progress updates, can be None
Data=None : object
An arbitrary object to be passed to the callback function
Flags=0 : int
Combination of MOVEFILE_* flags
Transaction=None : PyHANDLE
Handle to a transaction (optional). See win32transaction::CreateTransaction.
Comments
Only available on Windows 2000 or later
Accepts keyword arguments.
On Vista and later, the Transaction arg can be passed to invoke MoveFileTransacted