GetOpenFileName

[DllImport("Comdlg32.dll", SetLastError = true)]
public static extern bool GetOpenFileName(
   ref OPENFILENAME lpofn
);

Microsoft documentation: Link

Last updated