Menu
Your Cart

Transcend ESD270C 500GB USB 3.1 Gen 2 Type-C External SSD

Transcend ESD270C 500GB USB 3.1 Gen 2 Type-C External SSD
Transcend ESD270C 500GB USB 3.1 Gen 2 Type-C External SSD
  • Price: TK 6,900/-
  • Stock: In Stock
  • Model: ESD270C
TK 6,900/-
Ex Tax: TK 6,900/-

Key Features

    • MPN: TS500GESD270C
    • Model: ESD270C
    • Flash Type: 3D NAND flash
    • Capacity: 500 GB
    • Read: up to 520 MB/s
    • Write: up to 460 MB/s
    Specification
    General Feature
    BrandTrancend
    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 Capacity500 GB
    Technical Info
    Operating Temperature0°C (32°F) ~ 70°C (158°F)
    Physical Attributes
    Dimensions77 mm x 55.7 mm x 9.6 mm
    Weight35 g
    Warranty Information
    Warranty03 Year Warranty
    Description

    Transcend ESD270C 500GB USB 3.1 Gen 2 Type-C Extern al SSD IN BD 

    The Transcend ESD270C 500GB USB 3.1 Gen 2 Type-C External SSD is a perfect storage solution combining portability, high-speed performance, and durable design. Featuring a compact and lightweight form factor, this SSD is an excellent choice for professionals and casual users needing efficient data management on the go.

    With a USB 3.1 Gen 2 Type-C interface, the Transcend ESD270C delivers blazing-fast transfer speeds of up to 520MB/s. This ensures seamless backups, ultra-fast file transfers, and smooth operation even with large media files or demanding applications. Its advanced NAND flash technology guarantees reliable performance and long-lasting durability.

    Designed with user convenience in mind, the SSD comes with a reversible Type-C connector and includes a USB Type-C to Type-A cable, ensuring compatibility with laptops, desktops, and other devices. Its slim and shock-resistant design enhances portability and protects your data during travel.

    The Transcend ESD270C 500GB External SSD is compatible with multiple operating systems, including Windows, macOS, and Android, making it versatile for diverse use cases. With its built-in encryption features, your data is secure from unauthorized access.

    Buying Suggestions from Dear IT Solution

    For the Transcend ESD270C 500GB USB 3.1 Gen 2 Type-C External SSD, trust Dear IT Solution, your reliable source for authentic storage devices in Bangladesh.

    At Dear IT Solution, we offer this premium external SSD at the best price in Bangladesh, ensuring top-notch quality and exceptional value. With our commitment to genuine products and outstanding customer service, your satisfaction is guaranteed.

    Upgrade to the Transcend ESD270C 500GB USB 3.1 Gen 2 Type-C External SSD today and experience unparalleled performance and portability. Order now from Dear IT Solution and redefine your storage experience!

    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};