Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. foreach(QFileInfo fileInfo, filesInfoList)
  2.     {
  3.         if(fileInfo.isFile())
  4.         {
  5.             QString fileName = fileInfo.fileName();
  6.             QString filePath = fileInfo.absoluteFilePath();
  7.  
  8.             QByteArray CRC32 = getCRC32(filePath);
  9.             QByteArray MD5 = getMD5(filePath);
  10.  
  11.             QTreeWidgetItem *CRCF = new QTreeWidgetItem();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement