通过 webBrowser 对象打开 ftp url 会使输出看起来像是在 Windows 资源管理器中打开的。问题是当我双击一个目录进入时,它只是打开一个包含目录内容的新 Windows 资源管理器窗口。是否有可能改变这种行为?
//navigating to the required ftp address
webBrowser1.Navigate(
"ftp://" + user + ":" + pass + "@" + ip +"/",
null,
null,
"Authentication : Basic" + Convert.ToBase64String(Encoding.ASCII.GetBytes(user + ":" + pass)) + "\r\n");