1

次の VBS ファイルを組み合わせて、Excel ソース ファイルを読み取り、Excel 列 A に基づく名前と列 B (連結) に基づく内容を持つファイルを作成しました。これはすべて機能します...

Dim xlsFile
Dim objExcel
Dim outFile
Dim path

path = "C:\Documents and Settings\Andy\Desktop\SHORTURLs\JSPs"
xlsFile = path & "\urls.xls"
Set objExcel = WScript.CreateObject("Excel.Application")
objExcel.Workbooks.open(xlsFile)
' Create the File System Object
Set objFSO = CreateObject("Scripting.FileSystemObject")

intRow = 2 'Row 1 contains headings

' Here is the loop that cycles through the cells
Do Until objExcel.Cells(intRow,1).Value = ""
    strFile    = objExcel.Cells(intRow, 1).Value
    strDestURL = objExcel.Cells(intRow, 2).Value

    ' -- The heart of the create file script
    'Set objTextFile = objFSO.CreateTextFile("./" & strFile & ".jsp", True)
    outFile = path & "" & strFile & ".jsp"
    Set objTextFile = objFSO.CreateTextFile(outFile, True)

    ' Prep file contents
    sText = "<%" & vbCrLf
    sText = sText & "//REDIRECT301" & vbCrLf
    sText = sText & "//System.out.println(""<LOGGED> "" + " & strDestURL & ");" & vbCrLf
    sText = sText & "String dest = """ & strDestURL & """;" & vbCrLf
    sText = sText & "response.setStatus(response.SC_MOVED_PERMANENTLY); // response.SC_MOVED_TEMPORARILY [OR] response.SC_MOVED_PERMANENTLY" & vbCrLf
    sText = sText & "response.setHeader(""Location"", dest);" & vbCrLf
    sText = sText & "response.setHeader(""Connection"", ""close"");" & vbCrLf
    sText = sText & "%>"
    ' Write a line.
    objTextFile.Write(sText)

    objTextFile.Close
    intRow = intRow + 1
Loop

objExcel.Quit
WScript.Quit

ただし、VBS を修正して、列 A に基づくフォルダー構造にファイルを作成する必要があります (列 B は影響を受けません)。Excel スキーマ:

+----------------------+----------------------+
|       Column A       |       Column B       |
+----------------------+----------------------+
| /folder/filename.jsp | /url/destination.jsp |
+----------------------+----------------------+
| /folder/filename.jsp | /url/destination.jsp |
+----------------------+----------------------+
| /folder/filename.jsp | /url/destination.jsp |
+----------------------+----------------------+

フォルダーとそれらのフォルダー内のファイルを作成するにはどうすればよいですか? 参考までに: フォルダー構造の深さは 1 以下にする必要があると思います (つまり、 で/folder/file.xxxはありません/folder/folder/file.xxx)。

PS。JSP ファイルでは悪い習慣であることはわかっresponse.setHeader()ていますが、残念ながら、この方法を余儀なくされてきました。

4

1 に答える 1

5

FSO を使用します。

  1. .GetParentFolderName()ファイル仕様からディレクトリを取得する
  2. .BuildPath()共通のパスプレフィックスを前に追加する
  3. .FolderExists()ディレクトリを作成する必要があるかどうかを確認するには
  4. .CreateFolder()必要であれば
于 2013-02-13T18:09:03.410 に答える