Fimbultyr
8 years agoContributor
Error Handling from aqFileSystem
Hi there, I am quite new to Testautomation with TC and are currently struggling with one thing. In several Python scripts we are copying files with aqFileSystem.CopyFolder(). Most of the ...
- 8 years ago
Hi,
Since aqFileSytem.CopyFolder has the result as boolean what you can do is,
if(aqFileSytem.CopyFolder("your parameters)){ Log.Checkpoint("File/Folder copy completed"); }else{ Log.Error("File/Folder copy not completed"); }