|
|
|
|
|
by noinsight
193 days ago
|
|
Windows is not limited to accessing partitions through drive letters either, it's just the existing convention. You can mount partitions under directories just like you can in Linux/Unix. PowerShell has Add-PartitionAccessPath for this: > mkdir C:\Disk > Add-PartitionAccessPath -DiskNumber 1 -PartitionNumber 2 -AccessPath "C:\Disk" > ls C:\Disk It will persist through reboots too. |
|
For permanently mounted drives, I'd pick symbolic links over mount points because this lets you do file system maintenance and such much easier on a per-drive level. You can still keep everything under C:\ and treat it like a weird / on Unix, but it you need to defragment your backup hard drive you won't need to beat the partition manager into submission to make the defragment button show up for your mounted path.