Mitty
The reason CHKDSK throws "not available for RAW drives" is actually pretty fundamental to how Windows handles filesystems.
RAW isn't really a filesystem at all - it's the absence of one. When you initialize a disk (or when it gets corrupted), the MBR/GPT contains a partition table, but there's no filesystem signature written to the partition. NTFS, exFAT, and FAT32 all have specific "magic bytes" at known offsets that tell Windows "this partition has a filesystem, here's how to read it." RAW means Windows sees the physical disk and partition table, but finds nothing that looks like a valid filesystem.
CHKDSK is specifically an NTFS (and FAT) repair utility. It reads the NTFS master file table, finds inconsistencies, and fixes them. When there's no filesystem to repair, chkdsk literally has nothing to do - hence the error.
Your options in order of data safety:
If data exists on RAW partition → Use TestDisk/PhotoRec to recover first, THEN format
If brand new empty drive → Just format it via Disk Management
If partition table is corrupted → Run TestDisk to repair the partition table, which might restore access without formatting
The key insight: formatting doesn't necessarily destroy your data - it just overwrites the filesystem metadata. The actual file data often stays on disk until it's overwritten. This is why recovery tools can often pull files off "formatted" drives.