Click here to Skip to main content
15,879,474 members
Articles / Programming Languages / Shell

Cinchoo - ChoEazyCopy, Yet Another RoboCopy GUI

Rate me:
Please Sign up or sign in to vote.
4.71/5 (16 votes)
13 Apr 2022CPOL6 min read 115.1K   53   17
Yet another RoboCopy GUI tool
ChoEazyCopy is a simple and intuitive GUI tool to RoboCopy command. This tool is developed using Cinchoo - an application framework for .NET, and is another working example of using some of the key features of Cinchoo framework.

Contents

  1. Introduction
  2. Features
  3. How to Run
    1. Window Mode
      1. Main Toolbar
      2. Folders Selection
      3. Output
      4. RoboCopy Options Tab Window
      5. Backup Tasks Tab Window
    2. Tray Application Mode
    3. Console Mode
      1. Help
    4. Shell File Type (.ezy) Association
    5. Explorer Shortcut Menu
  4. History

1. Introduction

RoboCopy is a powerful tool included in the Microsoft Windows Server that is used to perform more advanced file replication tasks. The biggest benefit you'll find is the ability to create full mirror duplicates of two file structures (including all subdirectories and files, if you choose). RoboCopy also allows you to preserve all of the associated file information, including date and time stamps, security access control lists (ACLs) and more which is missing from normal file copy operations.

For people who like to work with command line, RoboCopy.exe tool as it is comes with package is great enough for them. However, for those who are comfortable to work with GUI, here it is EazyCopy, a simple and intuitive GUI tool to RoboCopy command.

This tool is developed using Cinchoo - An application framework for .NET. It is another working example of using some of the key features of Cinchoo framework.

2. Features

  • Simple and intuitive GUI
  • Compose and Save the options as profile for later use
  • Run multiple instances
  • Run and launch from Windows System Tray
  • Provides text box with RoboCopy commands associated with the changes to the properties
  • Display immediate hints to an option highlighted in the property grid or in the text editor
  • Able to run the RoboCopy within the GUI
  • 'Eazy Copy...' Windows Explorer extension
  • 32-bit or 64-bit support

3. How to Run

This tool can be started and run as:

  • Console Application
  • Windows Application
  • Tray Application
  • Shell File Type (.ezy) Association
  • Explorer Shortcut Menu ('Eazy Copy...')

3.1 Window Mode

By default, if you run the executable (ChoEazyCopy.exe), it will start as a Windows application. In the main window, you can compose RoboCopy command with your options, run them immediately. Additionally, you can save the RoboCopy command with options as profile (.ezy file) file and later, you can open it using this tool to execute them as and when needed.

The main window looks like below:

Image 1

Image 3.1.1 Main Window (With RoboCopy Options Tab)

Image 2

Image 3.1.2 Main Window (With Backup Tasks Tab)

3.1.1 Main Toolbar

Main application toolbar contains a set of application command buttons that gives users quick access to do compose, open, save profiles and control the execution of file operations.

Image 3

Image 3.1.1.1 Main Toolbar
  • Image 4- Create new profile settings file
  • Image 5- Open a existing profile settings file
  • Image 6 - Save the profile settings to file
  • Image 7- Save the profile settings to new file
  • Image 8- Start the RoboCopy processing
  • Image 9 - Stop the RoboCopy processing
  • Image 10 - Erase the status messages
  • Scroll Output - Turn on / off the output scrolling
  • Highlighted in Blue area shows the name of the profile settings file

3.1.2 Folders Selection

This section of controls allows to choose the folders needed for RoboCopy operations.

Image 11

Image 3.1.2.1 Choose Folders
  • Source Directory - Source path where the files and sub folders are copied from
  • Destination Directory - Target path where the files and sub folders are copied to

3.1.3 Output

Image 12

Image 3.1.4 Output

This output window shows the output messages of the RoboCopy operation.

3.1.4 RoboCopy Options Tab Window

Image 13

It is a property grid window to visually edit and manage RoboCopy command line options group together by category.

It has the below four categories:

  • Copy Options
  • Logging Options
  • Retry Options
  • Common Options

Each category contains a list of RoboCopy options. You can follow the below link for more help about RoboHelp:

Common Options

  • AdditionalParams - Any additional parameters not listed in the property grid you may want to pass to RoboCopy, you can specify here.
  • Files - The files to be copied from source to target location. Wildcard accepted.
  • RoboCopyFilePath - If the RoboCopy is not in the PATH, you can specify the exact location of the RoboCopy executable here.
  • Precommands - Specify any MS-DOS commands to be executed before the RoboCopy operation. Each command can be separated by ;
  • Postcommands - Specify any MS-DOS commands to be executed after the RoboCopy operations. Each command can be separated by ;
  • Comments - Short description of RoboCopy task.

For Precommands & Postcommands, you can use {{SRC_DIR}} / {{DEST_DIR}} tokens to replace them with source directory / destination directory respectively.

3.1.5 Backup Tasks Tab Window

In this window, you can load and manage the collection of Backup Tasks (aka. RoboCopy tasks) within this tool. Select the location of folder where the files reside. This tool automatically discovers and loads all the files with .ezy extension. From here, you can perform the below operations:

  • Clone existing task.
  • Delete a task.
  • Modify the comments of a task.

Image 14

3.2 Tray Application Mode

Sometimes, you may want to keep this tool running all the time and quickly go back to get access to this tool to carry out bulk file operations. In such cases, you can let them run in tray mode. By pressing 'Minimize' button, the tool will be made to run in tray mode.

After minimizing the main window, the tool will run in system tray. The below image shows the tool in system tray.

Image 15

Image 3.2.1 System Tray

In this mode, when you right click on this tool application icon, you will be given the below menu options:

  • Open - To restore the window
  • Launch New Instance - Open a new instance of EazyCopy application
  • Run as Administrator - Launch the application in administrator mode
  • Always on Top - To keep the window as topmost of all other Windows applications
  • Run at System Startup - This option lets the application start up automatically when the system starts.

The below image shows the system tray context menu of this tool.

Image 16

Image 3.2.2 System Tray Context Menu

Image 17

Image 3.2.3 System Tray Context Menu (Administrator/Elevated Mode)
  • Register Shell Extensions - Register .ezy files to windows shell, so it is easy to open by double clicking the file.
  • Unregister Shell Extensions - Unregister .ezy files from windows shell.

3.3 Console Mode

This tool can be started as Console Application by passing /#AM:Console command line parameter to the executable.

>ChoEazyCopy.exe /#AM:Console test.ezy /s:"C:\Test1" /d:"C:\Test2"
Listing 3.3.1 Running as console mode

Where:

  • /#AM:Console - Instruct the tool to start in console mode
  • test.ezy - Profile Settings file path, either absolute or relative file path.
  • /s - Source directory. Optional. If not specified, it will be picked up from settings file.
  • /d - Destination directory. Optional. If not specified, it will be picked up from settings file.

3.3.1 Help

To get help of the application, pass /? in command line.

Listing 3.3.1.1 Getting help
>ChoEazyCopy.exe /#AM:Console /?
ChoEazyCopy [Version 1.0.0.0]
Copyright c  2015

CHOEAZYCOPY SettingsFilePath [/s:<string>] [/d:<string>]

        SettingsFilePath        Settings file path.
        /s                      Source directory.
        /d                      Destination directory.

Below is the screenshot of help.

Image 18

Image 3.3.1.1 Console window

3.4 Shell File Type (.ezy) Association

This tool registers and associates .blk (profile settings file extension) files when you run this tool in elevated rights. Once registration is successful, you can open .blk files from explorer directly by double-clicking the file. The below screenshot shows the .blk file associations.

Image 19

Image 3.4.1 ezy file association in Explorer

3.5 Explorer Shortcut Menu

This tool registers and associates to all folders when you run this tool in elevated rights. Once registration is successful, you can right-click on any folder in explorer and launch this tool by clicking 'Eazy copy...' menu. The below screenshot shows the shortcut menu associations on folders.

Image 20

Image 3.5.1 Explorer Shortcut menu

History

  • 6th May, 2015: Initial version
  • 13th February, 2022: Updated

License

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


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionOverall progress missing Pin
Jo A. Kim24-Nov-22 21:38
Jo A. Kim24-Nov-22 21:38 
Questionrun ChoEazyCopy as WebService / on a WebServer Pin
Member 156269976-May-22 5:36
Member 156269976-May-22 5:36 
QuestionCinchoo.Core.dll Source code? Pin
forumarbeit15-Apr-22 11:54
forumarbeit15-Apr-22 11:54 
GeneralMy vote of 4 Pin
Scott Page25-Apr-19 16:36
professionalScott Page25-Apr-19 16:36 
GeneralRe: My vote of 4 Pin
Cinchoo9-Jan-21 1:45
Cinchoo9-Jan-21 1:45 
QuestionRemove Explorer Shortcut Menu Pin
htmlmaster31-Oct-17 12:29
professionalhtmlmaster31-Oct-17 12:29 
AnswerRe: Remove Explorer Shortcut Menu Pin
Cinchoo9-Jan-21 1:45
Cinchoo9-Jan-21 1:45 
AnswerRe: Remove Explorer Shortcut Menu Pin
Kevin Ormsbee22-Jan-21 7:17
Kevin Ormsbee22-Jan-21 7:17 
GeneralRe: Remove Explorer Shortcut Menu Pin
Cinchoo10-Feb-21 2:15
Cinchoo10-Feb-21 2:15 
SuggestionUse DisplayName and Description attributes Pin
Tekahe16-Jan-17 19:10
Tekahe16-Jan-17 19:10 
GeneralRe: Use DisplayName and Description attributes Pin
Cinchoo20-Jan-17 11:40
Cinchoo20-Jan-17 11:40 
GeneralRe: Use DisplayName and Description attributes Pin
Tekahe25-Mar-17 0:02
Tekahe25-Mar-17 0:02 
Questioncould not download the code Pin
Tridip Bhattacharjee22-Dec-16 21:33
professionalTridip Bhattacharjee22-Dec-16 21:33 
AnswerRe: could not download the code Pin
Cinchoo23-Dec-16 1:26
Cinchoo23-Dec-16 1:26 
QuestionFew tips Pin
Galatei22-Dec-16 6:17
Galatei22-Dec-16 6:17 
AnswerRe: Few tips Pin
Cinchoo23-Dec-16 7:35
Cinchoo23-Dec-16 7:35 
QuestionQuick remark Pin
peterkmx7-Dec-16 21:30
professionalpeterkmx7-Dec-16 21:30 
AnswerRe: Quick remark Pin
Cinchoo23-Dec-16 7:36
Cinchoo23-Dec-16 7:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.