Menu
Your Cart

Transcend ESD270C 2TB USB 3.1 Gen 2 Type-C External SSD

Transcend ESD270C 2TB USB 3.1 Gen 2 Type-C External SSD
Transcend ESD270C 2TB USB 3.1 Gen 2 Type-C External SSD
  • Price: TK 21,000/-
  • Stock: In Stock
  • Model: ESD270C
TK 21,000/-
Ex Tax: TK 21,000/-

Key Features

    • MPN: TS2TESD270C
    • Model: ESD270C
    • Capacity: 2TB
    • Interface: USB 3.1 Gen 2 (USB 10Gbps)
    • Flash Type: 3D NAND flash
    • Read: up to 520 MB/s, Write: up to 460 MB/s
    Specification
    General Feature
    BrandTranscend
    ModelESD270C
    Sequential R/WRead Speed (Max.): up to 520 MB/s Write Speed (Max.): up to 460 MB/s
    Flash Type3D NAND flash
    InterfaceUSB Type: USB Type C to USB Type A/USB Type C to USB Type C Connection Interface: USB 3.1 Gen 2
    Storage
    Storage Capacity2 Tb
    Technical Info
    Operating Temperature0°C (32°F) ~ 70°C (158°F)
    Physical Attributes
    Dimensions77 mm x 55.7 mm x 9.6 mm (3.03" x 2.19" x 0.38")
    Weight35 g (1.23 oz)
    Warranty Information
    Warranty03 Years
    Description

    Transcend ESD270C 2TB USB 3.1 Gen 2 Type-C External SSD in bd 

    The Transcend ESD270C 2TB USB 3.1 Gen 2 Type-C External SSD is a premium storage solution for professionals and enthusiasts who require exceptional speed and massive capacity. Its compact, lightweight design and cutting-edge features make it an ideal choice for storing and transferring large volumes of data with ease.

    Equipped with a USB 3.1 Gen 2 interface and a reversible Type-C connector, the Transcend ESD270C delivers lightning-fast transfer speeds of up to 520MB/s, ensuring seamless performance for demanding tasks like video editing, file backups, and data migration. With a spacious 2TB capacity, this SSD can store all your important files, multimedia, and projects in one secure location.

    The Transcend ESD270C features a sleek, anti-scratch coating and a durable, shock-resistant body to safeguard your data on the go. Its advanced compatibility allows effortless connection with desktops, laptops, tablets, and other Type-C-enabled devices.

    To ensure data security, the Transcend ESD270C includes built-in AES 256-bit encryption for protecting sensitive files. Its plug-and-play functionality and compact design make it a convenient and portable storage companion for both work and travel.

    Buying Suggestions from Dear IT Solution

    For the Transcend ESD270C 2TB USB 3.1 Gen 2 Type-C External SSD, rely on Dear IT Solution, the trusted name for high-quality tech products in Bangladesh.

    At Dear IT Solution, we provide the Transcend ESD270C 2TB USB 3.1 Gen 2 Type-C External SSD at the best price in Bangladesh, ensuring you get the best value and reliability. With our commitment to genuine products and outstanding customer support, your satisfaction is our priority.

    Enhance your data storage and transfer capabilities with the Transcend ESD270C 2TB USB 3.1 Gen 2 Type-C External SSD. Order now from Dear IT Solution and experience unmatched performance and convenience!

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};