我为我的客户提供了HTM脱机文件夹,作为一项好处。包含就像这样:
Files (folder) (with Plus.htm)
Autorun.inf
Icon.ico
START_THIS.bat
在Files文件夹中是HTM文件和downlodables以及所有内容......我想编辑BATCH文件以在“Files”文件夹中运行ONE .htm文件。如果我将SAME文件夹中的.htm文件作为批处理文件获得,我就能够这样做,但我无法编辑它以在批处理文件夹中运行它。
我现在的批处理文件(以及与同一文件夹中的.htm一起使用):
@echo Starting CD now...
@start Plus.htm
@cls
@exit
我尝试编辑它以便它可以使用我的文件夹结构:
@echo Starting CD now...
@CD "Files"
@start Plus.htm
@cls
@exit
但这不起作用我得到了这个错误:
'\ kostka \ install \ Ostatni \ Marketing \ Plus \ DVD \ Inventor Plus 2016' CMD.EXE以上面的路径作为当前目录启动。 UNC 路径不受支持。默认为Windows目录。启动CD 现在......系统无法找到指定的路径。
请帮忙吗?我试图想客户只有一个exe文件,但这只是我到目前为止的方式:( 非常感谢你。
答案 0 :(得分:1)
func loadGoogleMap()
{
dispatch_async(dispatch_get_main_queue(),
{
self.googleMapView.clear()
self.googleMapView.delegate = self
var visibleRegion : GMSVisibleRegion = self.googleMapView.projection.visibleRegion()
var bounds = GMSCoordinateBounds(coordinate: visibleRegion.nearLeft, coordinate: visibleRegion.nearRight)
var count = 1
for Prop: Property in self.properties
{
if Prop.propLat != ""
{
// println("lat >> \(Prop.propLat) lang >> \(Prop.propLang)")
var latStr = Prop.propLat
var latDbl : Double = Double(latStr.floatValue)
var langStr = Prop.propLang as NSString
var langDbl : Double = Double(langStr.floatValue)
var marker = GMSMarker()
if count == 0
{
// let initialLocation = CLLocationCoordinate2DMake(langDbl,latDbl)
// let initialDirection = CLLocationDirection()
//
// let camera = GMSCameraPosition.cameraWithTarget(initialLocation, zoom: 5)
// self.googleMapView.camera = camera
//
}
marker.position = CLLocationCoordinate2DMake(langDbl,latDbl)
marker.appearAnimation = kGMSMarkerAnimationPop
marker.icon = UIImage(named: "red_\(Prop.propSequence)")
marker.title = Prop.propBuildingName as String
marker.snippet = Prop.propCode as String
marker.infoWindowAnchor = CGPointMake(0.44, 0.45);
bounds.includingCoordinate(marker.position)
marker.map = self.googleMapView
count++
}
}
self.googleMapView.animateWithCameraUpdate(GMSCameraUpdate.fitBounds(bounds, withPadding: 30.0))
})
}
start %~dp0\Files\Plus.htm
扩展到批处理文件所在的目录