Patriot PDP31 1TB Type-C Portable SSD - Red / Black - Patriot | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Patriot

Patriot PDP31 1TB Type-C Portable SSD - Red / Black

SKU: PDP311TB23UCK
R 4 669.00
Only 5 left!
Only 5 left in stock - order soon!

Designed for creators, professionals, and tech enthusiasts on the move, the Patriot PDP31 1TB Portable SSD delivers blazing-fast performance and next-gen portability in a compact, rugged package. Leveraging USB 3.2 Gen2 technology, this ultra-portable SSD offers sequential read and write speeds of...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

Designed for creators, professionals, and tech enthusiasts on the move, the Patriot PDP31 1TB Portable SSD delivers blazing-fast performance and next-gen portability in a compact, rugged package. Leveraging USB 3.2 Gen2 technology, this ultra-portable SSD offers sequential read and write speeds of up to 1000MB/s, enabling lightning-fast transfers of large files, videos, and project folders without skipping a beat.

Whether you’re working on 4K video editing, managing large databases, or backing up your digital life, the PDP31 provides 1TB of high-speed NVMe storage in the ultra-compact M.2 2230 form factor. Housed in a premium 100% aluminium alloy shell with a sleek transparent window, this SSD combines cutting-edge performance with modern aesthetics. It’s not just about looks—the aluminium casing also doubles as a passive heatsink, helping maintain cool operation even during intense usage.

The PDP31 is engineered with durability in mind. Its shock-proof silicone bumper provides drop protection against accidental knocks and bumps, making it a reliable companion whether you’re working from home, on location, or on the go. Its small footprint and lightweight build (only 54.7g) make it pocket-friendly and travel-ready.

Equipped with a Type-C USB 3.2 Gen 2 controller, this SSD ensures 10Gbps transfer bandwidth, and supports hot-swapping for effortless plug-and-play performance. It’s fully backward-compatible with USB 3.0 and USB 2.0, and works seamlessly across Windows, macOS, Linux, and Android platforms, making it a true plug-and-play universal storage solution.

Whether you’re a professional looking for a reliable workhorse or a student needing fast, portable storage, the Patriot PDP31 1TB SSD offers best-in-class performance in a rugged, compact design.

FEATURES:

  • Supports PCIe M.2 NVMe SSDs in the 2230 form factor
  • USB 3.2 Gen2 (10Gbps) interface controller
  • 100% Aluminium alloy shell & transparent window
  • Supports hot swap and reversible swap
  • Convenient and portable cable
  • Silicone bumper shock-proof and drop-proof for added protection
  • Compatible with USB3.0 / USB2.0 interface
  • Compatible with Windows / Mac OS / Linux / Android platform

SPECIFICATIONS:

  • Model / Capacity: 1TB
  • SSD Form Factor: M.2 2230
  • Form Factor / Interface: Type-C USB 3.2 Gen 2 controller
  • Seq. Read/Write: 1000 / 1000MB/s
  • Shell: 100% aluminum alloy shell & transparent window
  • Operating Temperature: 0 to 70 °C
  • Storage Temperature: -25 °C to 85 °C
  • Operating System: Compatible with Windows / Mac OS / Linux / Android
  • Dimension: 4.5 x 4.5 x 1.2 cm
  • Weight: 54.7 g
  • Warranty: Three-year warranty

WHAT’S IN THE BOX:

  • Patriot PDP31 1TB Type-C Portable SSD – Red / Black x1
Brand Patriot
Colour Black/Red
Form Factor -
Interface USB Type-C
Capacity 1TB
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 36 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

Hot
Patriot PVP30 2TB Duo Compact External Portable SSD
Patriot

Patriot PVP30 2TB Duo Compact External Portable SSD

R 13 349.00

In Stock

Crucial X9 Pro 1TB Type-C Portable SSD
Crucial

Crucial X9 Pro 1TB Type-C Portable SSD

R 3 199.00

Out of Stock

-61%
HIKSEMI T100 Pocket Series 512GB USB 3.0 Portable SSD
HIKSEMI

HIKSEMI T100 Pocket Series 512GB USB 3.0 Portable SSD

R 949.00 R 2 459.00

Save R 1 510.00

In Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!