In verilog-2001, there is a single $fopen for both multi-channel descriptors (MCD) and file descriptors (FD).
Whether an FD or MCD is produced is indicated by the presence of a mode string added to $fopen in verilog-2001:
file = $fopen("filename", "w"); // FD
file = $fopen("filename"); // MCD