External SSD Becomes Read-Only Through a USB-C Hub? Fix File System and Permission Issues

external SSD read-only through USB-C hub

Your external SSD appears in Finder or File Explorer. You can open folders and copy files from the drive, but you cannot save new files, delete old ones, rename folders, or edit documents.

The problem may seem to start after connecting the SSD through a USB-C hub. However, a read-only drive is not always caused by the hub.

The real cause is usually one of these:

  • The drive uses a file system that the operating system cannot write to.
  • Your user account does not have write permission.
  • Windows has marked the disk as read-only.
  • The file system contains errors after an unsafe disconnect.
  • The drive is full, encrypted, or reserved for backups.
  • The USB-C hub, cable, enclosure, or power supply is unstable.
  • The SSD is beginning to fail and has entered a protective read-only state.

Before formatting the drive or replacing the hub, identify which category matches your situation.

Important: Do not erase, reformat, or run destructive disk commands before copying important files to another location.

Start with the Read-Only Diagnosis Map

Use these three questions in order.

Question Result What It Usually Means
Can you write to the SSD when connected directly? Yes Hub, cable, port, power, or enclosure may be involved
Is the SSD read-only on both direct and hub connections? Yes File system, permissions, disk attribute, or drive health
Does it fail only on Mac but work normally on Windows? Yes The drive may be formatted as NTFS
Does it fail only for one user account or folder? Yes Permission or ownership issue
Did the issue start after an unsafe disconnect? Yes File-system errors are possible
Is the SSD nearly full? Yes The system may not have enough space to complete writes
Does the SSD repeatedly disconnect or freeze? Yes Power, cable, enclosure, or hardware failure

This prevents a common mistake: replacing the USB-C hub when the drive itself is formatted or protected in a way that blocks writing.

Check 1: Is the Hub Actually Causing the Problem?

Connect the SSD directly to the laptop using the same cable, if possible.

Try to:

  1. Create a new folder.
  2. Copy a small file to the drive.
  3. Rename the file.
  4. Delete the file.
  5. Eject the drive safely.

If direct writing works

The SSD and file system are probably functional. Focus on the USB-C connection path:

  • Try another data port on the hub.
  • Do not use the hub’s PD charging-input port.
  • Disconnect other storage devices.
  • Connect power to the hub if it supports PD.
  • Try another USB cable.
  • Restart the laptop with the hub connected.
  • Test the hub on another computer.

An external SSD may appear in the system even when its power or data connection is unstable. Reading a small file requires less sustained stability than writing a large file.

If direct writing also fails

The hub is probably not the main cause.

Continue with file-system, permission, write-protection, and disk-health checks.

Check 2: Identify the Drive’s File System

The file system determines which operating systems can write to the SSD.

File System Mac Write Support Windows Write Support Best Use
APFS Yes No, without extra software Mac-only SSD
Mac OS Extended Yes No, without extra software Older Mac workflows
NTFS Usually read-only Yes Windows-only drive
exFAT Yes Yes Mac and Windows sharing
FAT32 Yes Yes Older devices and small files

Apple states that macOS may be able to read an NTFS drive but cannot normally write to it using Disk Utility. Apple also identifies APFS and Mac OS Extended as Mac formats, while ExFAT and FAT are Windows-compatible formats.

How to check the format on Mac

  1. Select the SSD in Finder.
  2. Press Command-I or choose File → Get Info.
  3. Look for Format.

How to check the format on Windows

  1. Open File Explorer.
  2. Right-click the SSD.
  3. Select Properties.
  4. Check File system under the General tab.

Mac: SSD Is Visible but You Cannot Save Files

Cause 1: The SSD Is Formatted as NTFS

This is one of the most common explanations.

A drive formatted on Windows may use NTFS. macOS can often display and copy files from it, but native writing is generally unavailable.

Apple’s official guide confirms that Disk Utility does not support writing to NTFS-formatted drives.

You have three practical options:

Keep NTFS

Use the SSD mainly with Windows.

Reformat as exFAT

Use this when the SSD must work with both Mac and Windows.

Reformat as APFS

Use this when the SSD will be used only with modern Macs.

Reformatting deletes all data. Back up the SSD before changing the file system.

Cause 2: The Drive Is Full

Open Finder, select the drive, and choose Get Info.

Check:

  • Capacity
  • Available space
  • Used space

Apple recommends confirming that the drive has enough free storage before investigating more complex causes.

Delete unnecessary files only after confirming that important data is backed up.

Cause 3: Finder Permissions Block Writing

In Finder:

  1. Select the external SSD.
  2. Press Command-I.
  3. Expand Sharing & Permissions.
  4. Confirm that your user account has Read & Write access.
  5. If available, enable Ignore ownership on this volume.

Apple specifically recommends checking the Sharing & Permissions section and the “Ignore ownership on this volume” setting when a Mac can read but cannot save to an external drive.

If the drive is encrypted, unlock it before changing permissions.

Cause 4: The SSD Is Reserved for Time Machine

A drive configured as a Time Machine backup destination may not behave like a normal general-storage drive.

Apple notes that a device configured for Time Machine may be limited to Time Machine backups rather than ordinary file storage.

Check:

System Settings → General → Time Machine

If the SSD is a dedicated backup drive, do not remove or reformat it until you have confirmed that the backups are no longer needed.

Cause 5: The File System Has Errors

An unsafe disconnect, interrupted transfer, power loss, or unstable Hub connection may damage the drive’s directory structure.

Use Disk Utility:

  1. Open Disk Utility.
  2. Choose View → Show All Devices.
  3. Select the SSD volume.
  4. Click First Aid.
  5. Run First Aid on the volume, container, and physical device.

Apple says Disk Utility can check and repair errors related to a drive’s formatting and directory structure. If it cannot repair the disk, Apple recommends backing up as much data as possible before reformatting or replacing the drive.

Authoritative external link:

Apple: If your Mac can’t save files to an external drive

Windows: External SSD Says Read-Only or Access Denied

Cause 1: Windows Permissions Block Writing

Right-click the drive or affected folder and open:

Properties → Security

Check whether your account has:

  • Write
  • Modify
  • Full control

Microsoft explains that Windows permissions can be reviewed and changed through File Explorer’s Properties and Security tab.

Do not replace the existing owner or permission entries unless you understand who needs access. On a company computer, permission settings may be controlled by an administrator.

Cause 2: The Disk Has a Read-Only Attribute

Windows can assign a read-only attribute to a disk.

To inspect it:

  1. Open Command Prompt as Administrator.
  2. Type:
diskpart
  1. List the drives:
list disk
  1. Carefully identify the external SSD by size.
  2. Select it:
select disk X

Replace X with the correct disk number.

  1. View its attributes:
attributes disk
  1. If it is marked read-only, clear the attribute:
attributes disk clear readonly

Microsoft documents the attributes disk command as the Windows tool for displaying, setting, or clearing a disk’s read-only attribute.

Warning: Selecting the wrong disk can affect another drive. Do not use commands such as clean, delete, or format during this check.

Authoritative external link:

Microsoft: attributes disk command

Cause 3: The File System Contains Errors

Windows can use CHKDSK to examine a local drive’s file system and metadata.

First identify the SSD’s drive letter, such as E:.

To scan without repairing:

chkdsk E:

To repair file-system errors:

chkdsk E: /f

Microsoft states that CHKDSK checks a volume for logical and physical errors, while the /f parameter attempts to repair file-system errors. Do not interrupt a repair once it has started.

Back up accessible files before running a repair command, especially if the drive has already disconnected unexpectedly.

Cause 4: The Drive Is Encrypted or Managed

Check whether the SSD uses:

  • BitLocker
  • Company security policies
  • Third-party encryption
  • Backup software
  • Manufacturer security tools

A locked or partially unlocked encrypted drive may allow limited access but block changes.

Try unlocking it using the original password, recovery key, or management software.

Why the SSD May Work Directly but Become Read-Only Through the Hub

A Hub does not normally change NTFS into exFAT or rewrite the drive’s permissions.

However, the Hub can indirectly contribute if it causes:

  • Brief power interruptions
  • Repeated drive resets
  • Unsafe disconnects
  • Interrupted file writes
  • Unstable enclosure communication
  • Failure during sleep or wake

If the SSD is writable directly but unreliable through the Hub, simplify the setup:

Laptop → USB-C Hub → SSD only

Remove:

  • HDMI monitor
  • Webcam
  • Phone
  • Second SSD
  • Hard drive
  • Card reader

If the Hub supports Power Delivery, connect the charger before testing the SSD.

The currently available CB-C35H provides four USB 3.0 ports rated up to 5Gbps and up to 60W power pass-through. It can be used to test a powered external-storage workflow, but it cannot repair an incompatible file system or permission setting.

Choose the Right File System Before Reformatting

Mac Only

Choose APFS, especially for an SSD used with a modern Mac.

Apple describes APFS as the default modern Mac file system and notes that it is optimized for flash and SSD storage.

Windows Only

Choose NTFS.

It supports Windows permissions and large files, but native macOS writing is limited.

Mac and Windows

Choose exFAT.

Apple identifies exFAT as a Windows-compatible format available in Disk Utility, making it the practical choice for drives shared between modern Mac and Windows computers.

Before reformatting:

  1. Copy all accessible files to another drive.
  2. Confirm the backup opens correctly.
  3. Record encryption passwords or recovery keys.
  4. Reformat only after the backup is verified.

When the Enclosure or SSD May Be Failing

Stop troubleshooting and back up immediately if you notice:

  • The drive repeatedly disconnects.
  • Files become corrupted.
  • The SSD changes between writable and read-only.
  • Disk Utility or CHKDSK cannot repair it.
  • The enclosure becomes unusually hot.
  • The drive disappears during large transfers.
  • The SSD is read-only on multiple computers.
  • Health-monitoring software reports critical warnings.

A failing SSD controller may switch the drive into a protective read-only state to preserve existing data.

If the M.2 SSD itself is still functional but the enclosure or connection is unreliable, an available USB-C SSD enclosure such as the C9Elite can be used for isolation testing. It supports NVMe and SATA M.2 drives in several common sizes, up to 10Gbps data transfer and UASP, and its current product page shows Add to cart.

Do not move the SSD between enclosures until the computer is fully shut down and the drive is safely disconnected.

FAQ

Why can I open files but not copy anything to my external SSD?

The drive may use NTFS on a Mac, lack write permission, be full, have a read-only disk attribute, or contain file-system errors.

Can a USB-C hub make an SSD read-only?

Not directly. A Hub does not normally change the file system or permissions. However, unstable power or repeated disconnects can contribute to file-system errors.

Why is my NTFS SSD read-only on Mac?

macOS can commonly read NTFS drives but does not provide native NTFS writing through Disk Utility. Use Windows, third-party software, or back up and reformat the drive.

Is exFAT better than NTFS?

ExFAT is more convenient when sharing a drive between Mac and Windows. NTFS is usually better for Windows-only use.

Will formatting fix a read-only SSD?

It may fix an incompatible or damaged file system, but formatting deletes all data. If the SSD is physically failing, formatting may not solve the problem.

Why does the SSD work directly but fail through the Hub?

The Hub connection may have insufficient power, an unstable cable, a damaged port, or too many high-power devices connected at once.

Should I run First Aid or CHKDSK first?

Back up accessible data first. On Mac, use Disk Utility First Aid. On Windows, use CHKDSK after verifying the correct drive letter.

When should I replace the SSD?

Replace it if it remains read-only on multiple computers, repeatedly disconnects, reports critical health warnings, or cannot be repaired after your data has been backed up.

Final Thoughts

When an external SSD becomes read-only through a USB-C Hub, do not format it immediately.

Diagnose the problem in this order:

Direct connection → File system → Free space → Permissions → Read-only attribute → Disk repair → Hub power and cable → Drive health

If the SSD is NTFS and connected to a Mac, the Hub is probably not the cause. If the drive is writable directly but not through the Hub, focus on power, ports, cables, and connected devices.

A USB-C SSD enclosure or USB-C hub for external SSD can help isolate hardware problems, but file-system compatibility and permissions must be fixed inside macOS or Windows.

RELATED ARTICLES

Leave a comment

Your email address will not be published. Required fields are marked *

Please note, comments must be approved before they are published