下面的代码是在本机的"C:\boot"下窗建一个excel文件,我想在另一台机器(IP:10.195.22.23)的"cccc"文件夹下创建这个文件如何写??????????
xlsPath  = "C:\boot\aaa.xls"
Set xlApp = CreateObject(”Excel.Application”)
xlApp.Visible = True
Set xlBook = xlApp.Workbooks.Add
Set xlSheet = xlBook.Worksheets(1) ‘现在只考虑单表单
xlSheet.Cells(1,1) = “wangpeng” ‘设置第一个单元格的值
xlSheet.SaveAs xlsPath ‘保存