Code Sector Blog View RSS

No description
Hide details



TeraCopy 4 RC 3 Feb 6:24 AM (2 months ago)

Changelog:

Download: codesector.com/files/teracopy4rc.exe

Sale: A 50% discount is available at BitsDuJour on February 4:
bitsdujour.com/software/teracopy

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

TeraCopy 4 Beta 2 10 Jan 6:51 AM (3 months ago)

Changelog:

Download: codesector.com/files/teracopy4b2.exe

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

New Year Sale 24 Dec 2024 7:14 PM (4 months ago)

We offer a 50% discount on all our software from today through January 7. Please use the coupon NEW-YEAR on this page.

The fine print:
– After you purchase TeraCopy Pro it may be used indefinitely.
Upgrades to future versions of the software will be free for the lifetime of the product.
– TeraCopy Pro is licensed per user, so if more people are going to use TeraCopy Pro you will need to purchase additional copies.
– Each license allows installation on all owned computers, and TeraCopy Pro may be used at exactly the same time on each of them.
– Transfer of a license to another owned computer is allowed.
– License activation isn’t required.

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Direct Folders 4.3.5 23 Dec 2024 5:19 PM (4 months ago)

Changelog:

Download: directfolders4.3.5.exe


MD5: 00B5EA55511DC9A2B7E190441E6A6B5F
SHA-256: C177AD20456A23B5EE199399E46C78166F78B354EAA37249DF4A5271C6712106

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Direct Folders 4.3.4 19 Nov 2024 7:25 AM (5 months ago)

Changelog:

New Snippets Feature

Added:

Fixed:

Download: directfolders4.3.4.exe


MD5: 054983804EBD8EC2DD06B4A66E3475B1
SHA-256: D833E78887CE34C3FC4D95F3AC88946EA9B463E57F4CAB5ADDB3DF124A201C97

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

How to Copy Files from Android to PC via Wi-Fi Using TeraCopy 29 Oct 2024 10:03 PM (6 months ago)

Transferring files between your Android phone and Windows PC just became much easier, thanks to Microsoft’s latest integration of Android devices directly into File Explorer. This seamless connection allows you to access your phone’s internal storage over Wi-Fi, eliminating the need for USB cables. In this guide, we’ll walk you through setting up this feature and using it with TeraCopy.

Prerequisites

Updating Necessary Components

Cross-Device Experience Host

The Android integration in File Explorer is managed by a system component called Cross-Device Experience Host. Ensure it’s updated to the latest version:

  1. Open the Microsoft Store Cross-Device Experience Host page.
  2. Click on Get or Update to install the latest version.

We’ve tested it with version 1.24092.24.0.

Setting Up Your Android Phone

  1. Install or Update the Link to Windows App:
    • Download or update the app from the Google Play Store.
    • Ensure it’s version 1.24071 or newer.
  2. Sign In and Grant Permissions:
    • Open the Link to Windows app.
    • Sign in with your Microsoft account.
    • Grant all necessary permissions for the app to function correctly.

Enabling Access on Windows

  1. Allow PC to Access Mobile Devices:
    • Go to Settings > Bluetooth & devices > Mobile devices.
    • Toggle on Allow this PC to access your mobile devices.
    • Click on Manage devices and add your phone if necessary.

Accessing Your Android Phone in File Explorer

  1. Open File Explorer:
    • Press Win + E or click the File Explorer icon.
  2. Locate Your Phone:
    • In the left sidebar, you should see your phone’s name.
    • Click on your phone’s name to access its internal storage.

Using TeraCopy to Transfer Files

While you can’t currently set TeraCopy as the default copy handler when transferring files from your Android phone via the File Explorer integration, there’s a simple workaround:

  1. Open TeraCopy:
    • Launch TeraCopy on your PC.
  2. Select Files from File Explorer:
    • Navigate to the files on your Android device using File Explorer.
  3. Drag and Drop into TeraCopy:
    • Select the files or folders you wish to copy.
    • Drag them from the File Explorer window and drop them into the TeraCopy window.
  4. Choose Destination:
    • In TeraCopy, click Browse to select your PC’s destination folder.
  5. Start Copying:
    • Click Copy to begin the file transfer.
    • TeraCopy will handle the copying process.

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

TeraCopy 4 Beta 19 Sep 2024 2:21 AM (7 months ago)

Changelog:

User Interface Improvements:

New Features:

Performance Enhancements:

File Handling Improvements:

Bug Fixes:


Pending implementation:

Download: codesector.com/files/teracopy4b.exe
Portable version: codesector.com/files/teracopy4b.zip

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Guide: Automatically Zip, Split, and Transfer Files 6 Jul 2024 5:45 AM (9 months ago)

If you need to copy many small files over a network, it can take a long time even with multi-thread copying. This guide will show you how to add an entry to the TeraCopy drag-and-drop confirmation dialog for a batch file that will:

Save this code to the 7zipCopy.bat file:

@echo off
setlocal enabledelayedexpansion

REM Check if the correct number of arguments is provided
if "%~1"=="" (
    echo Usage: 7zipCopy.bat input_file.txt temp_folder target
    echo 1. 7-Zip will pack files listed in 'input_file.txt' to 'temp_folder'.
    echo 2. TeraCopy will copy 'temp_folder' to 'target'.
    exit /b 1
)

REM Set variables
set input_file=%~1
set outputDir=%~2
set target_path=%~3
set output_file=output_paths.txt
set zip_prefix=archive

REM Check if the input file exists
if not exist "%input_file%" (
    echo Input file not found: %input_file%
    exit /b 1
)

REM Check if the temp folder exists
if not exist "%outputDir%" (
    echo Temp folder not found: %outputDir%
    exit /b 1
)

REM Ask user whether to clear the temp folder
echo Temp folder: %outputDir%
set /p clear_temp=Delete all files in this folder (Y/N)? 

if /i "!clear_temp!"=="Y" (
    echo Clearing temp folder...
    del /q "%outputDir%\*"
    if %errorlevel% neq 0 (
        echo Failed to clear the folder.
        exit /b 1
    )
    echo Temp folder cleared.
) else (
    echo Temp folder not cleared.
)

REM Initialize the zip file name
set zipFileName=%outputDir%\%zip_prefix%.zip

REM Store files with no compression (-mx0) in 10 GB volumes (-v10g)
"C:\Program Files\7-Zip\7z.exe" a -tzip -mx0 -v10g "%zipFileName%" "@%input_file%" -bb

if errorlevel 1 (
    echo Compression failed.
    pause
    exit /b 1
)

"C:\Program Files\TeraCopy\TeraCopy.exe" copy "%outputDir%" "%target_path%"

Press Win+R, type %APPDATA%\TeraCopy and press Enter.

Add this text to the end of PasteMenu.ini file:

[5]
title=7zip + Copy
path=cmd.exe
parameters=/K C:\Your\Path\7zipCopy.bat "{list}" "C:\Temp\Archive" "{target}"

Replace C:\Temp\Archive with any existing empty folder.

After the copy, you can unpack the archive(s) on the destination machine.

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

TeraCopy 4 Alpha 10 May 2024 12:09 AM (11 months ago)

Changelog:

Pending implementation:

Download: codesector.com/files/teracopy.alpha.zip

More recent version is available:

TeraCopy 4 Beta

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

New Year Sale & Upcoming TeraCopy Features 27 Dec 2023 9:08 PM (last year)

We are offering a 50% discount starting today through January 7 on all our software. Please use the coupon NEW-YEAR on this page.

Upcoming TeraCopy Features

We have made progress in creating a foundation of a multi-thread copy system that allows for reading once and writing to one or multiple targets, as well as reading from multiple threads and writing using one thread for HDD/tape. However, we still have a lot of work ahead of us due to major changes in the copy engine. We estimate that a beta version will be available in a couple of months.

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?