Skip to content

A script to recover files from MyCloud REST SDK Folder Structure

License

Notifications You must be signed in to change notification settings

springfielddatarecovery/mycloud-restsdk-recovery-script

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

Free WD MyCloud Data Recovery Tool

mycloud-restsdk-recovery-script

A script to recover files from MyCloud REST SDK Folder Structure

Problem: MyCloud devices don't use a simple, flat filesystem like other external drives, they store files with random-seeming names and directory structures. If your MyCloud is not functioning, you will need to read the SQLite database on the device to determine the original file structure.

Solution: This script reads the database and a dump of the filesystem and copies the data to another location with the correct filenames and structures. This script is intended for a Linux machine where you already have the file structure and database extracted. This won't work on Windows. I know it's ugly and inefficient, I am new to python. This is tested and working with Python 3.6 on Linux.

More: Need more help than this script can offer? We offer affordable flat-rate data recovery at our website

If this script has helped you recover your data, please consider saying thanks with a crypto/Bitcoin donation

  • Bitcoin: 1DqSLNR8kTgwq5rvveUFDSbYQnJp9D5gfR
  • ETH: 0x9e765052283Ce6521E40069Ac52ffA5B277bD8AB
  • Zcash: t1RetUQktuUBL2kbX72taERb6QcuAiDsvC4

Don't have any crypto? Buy some at Coinbase

FUTURE DEVELOPMENT: This code will not be receiving any updates, feel free to fork it if you want to make improvements.

Notes: SQLite database is stored in /restsdk/data/db/index.db. Inside the DB two main tables appear to be of interest, FILES and ImageTrans. FILES lists each file with a unique ID (primary key) and a ContentID (the name of the file when stored on the filesystem) along with the file name "My important picture.jpg" and some other metadata. I believe ImageTrans is only for thumbnailing purposes but I could be wrong about that. Importantly, the entries in FILES have a "parent" attribute which places each file in a directory structure. This script totally ignores ImageTrans.