PDA

View Full Version : Data recovery library in QT?



bruakerche
28th October 2015, 10:36
I am planning on build a data recovery app on my own. Does anyone know is there any library for that purpose thanks?

jefftee
29th October 2015, 06:13
If you are talking about data recovery for disk failures or similar, I doubt there are any Qt libraries for that purpose, as you will normally be working with the raw disk reading/writing sectors, inodes, etc. You will likely have to use the host OS raw (and privileged) access methods to accessing raw disk devices.

I assume you've already googled for data recovery libraries. If you find any that are written in C and portable that will compile on multiple OS's, you could easily write a Qt library wrapper for the native C library or just use the C library functions from your Qt application.

Good luck.

bruakerche
29th October 2015, 07:55
If you are talking about data recovery for disk failures or similar, I doubt there are any Qt libraries for that purpose, as you will normally be working with the raw disk reading/writing sectors, inodes, etc. You will likely have to use the host OS raw (and privileged) access methods to accessing raw disk devices.

I assume you've already googled for data recovery libraries. If you find any that are written in C and portable that will compile on multiple OS's, you could easily write a Qt library wrapper for the native C library or just use the C library functions from your Qt application.

Good luck.

Thanks you very much for the kindly response. I just decompile one of similar products(demo (http://www.androidphonesoft.com/android-data-recovery.html)) and found it built with QT that's reason why i asked here. I will figure it out myself as you guided.

Werfkjl
24th June 2016, 05:52
I am planning on build a data recovery app on my own. Does anyone know is there any library for that purpose thanks?

great, and more research needed

Werfkjl
27th June 2016, 09:29
Thanks you very much for the kindly response. I just decompile one of similar products(demo) and found it built with QT that's reason why i asked here. I will figure it out myself as you guided.

Another similar product: data recovery app (http://www.android-transfer.net/android-recovery.html)

Anamaria Fiser
28th June 2016, 19:17
Good luck, hope you figure it out! Do let us know how it turns out. :-)

slaphead
29th June 2016, 17:06
Any update on your data recovery app?

Shehab
12th December 2017, 10:35
I am planning on build a data recovery app (https://www.mobikin.com/doctor-for-android/) on my own. Does anyone know is there any library for that purpose thanks?
It must be a great job if you can build a data recovery app, it is difficlut to develop but really useful for users who lose data.

narek
8th February 2018, 10:40
Great job. Any update on your data recovery app?