瀏覽代碼

Add ReadMe

Signed-off-by: ewft <bnj@ewft.org>
ewft 7 年之前
父節點
當前提交
7e0de4b342
共有 1 個文件被更改,包括 45 次插入0 次删除
  1. 45 0
      README.md

+ 45 - 0
README.md

@@ -0,0 +1,45 @@
+# File System rebuilder for Sony Xperia DBK backup file
+
+
+Sony Xperia backup file, with dbk extension, are in fact zip archive.
+But all files are stored in a same an unique "Content" folder, with as a filename a "Content-Id".
+And a FileSystm.xml file contains the folder hierarchy and the correspondance between real name and Content-Id.
+
+
+This script reconstruct the filesystem, by recreating the folder hierarchy, renaming the file with their correct name and moving them at their location in the folder hierarchy.
+
+## Requierment
+
+Python 2.7
+
+
+## Usage
+
+Open main.py 
+
+Setup Parameters
+
+'''
+
+# Output folder for the reconstruction
+top_root = "../result2/"
+
+# Path to the FileSystem.xml
+FileSystemXML = "../FileSystem.xml"
+
+# Path to the Content Folder
+ContentFolder = "../Content"
+
+# Dry Run
+DryRun = True
+'''
+
+run script with
+
+''' python2 main.py '''
+ 
+ 
+
+
+
+