Click here to Skip to main content
15,885,182 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I need to Clone Drive "for e.g : SD Card " to Iso , img or bin file .
I don't wanna just copy Items what i'm looking for to clone it totally "Smth like Sector to same sector "
textBox1.Text == File Path
comboBox1.SelectedValue.ToString() ==the value of the SD Card Like : " F:\ "

What I have tried:

<pre lang="c#">CDBuilder builder = new CDBuilder();
            builder.UseJoliet = true;
            builder.VolumeIdentifier = "eMMC";
            builder.AddDirectory(comboBox1.SelectedValue.ToString());
            builder.Build(textBox1.Text);
Posted
Updated 15-Jan-17 5:42am
Comments
[no name] 14-Jan-17 7:55am    
Did you forget to ask a question and describe your problem adequately?

1 solution

I'd probably try using AOMEI Backupper - it has a free version which should include the Clone tools: Best Free Backup Software for Windows 10, Windows 8.1/8, Windows 7, Vista, XP[^] (I use the "Professional" version, which means I paid for it and get a few extra features - worth paying for tthough as it's brilliant software).
The clone tools allow you to make image files from SD cards, which means you can restore them, and it has a command line interface: Backup by using command line with AOMEI Backupper[^] - which may support cloning but does support backup to image, which should work from an SD card (it works from my USB flash)
And command line interfaces mean your code can control it via the Process class.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900