我正在使用 asp.net
这是我的代码:
string cmd = "cmd";
string enter = "/c";
string exe =
" ogr2ogr -f \"GeoJSON\" -t_srs WGS84 " +
"C:\\Users\\subhi2\\Desktop\\WebSite9\\MapInfoFile\\aghat.json " +
"C:\\Users\\subhi2\\Desktop\\WebSite9\\MapInfoFile\\aghat.TAB";
try
{
Process p = new Process();
p.StartInfo = new ProcessStartInfo(cmd, enter + exe);
p.Start();
}
catch (Exception)
{
}
我试图用cmd写。及其工作。
ogr2ogr -f "GeoJSON" -t_srs WGS84 C:\Users\subhi2\Desktop\WebSite9\MapInfoFile\aghat.json C:\Users\subhi2\Desktop\WebSite9\MapInfoFile\aghat.TAB
我怎样才能成功?(可能是文件夹或文件访问权限)有意见吗?
但不能在 asp 中工作。(没有错误)