「VBScript]」フォルダの作成日時を取得するサンプル
サンプルコード
Dim fso
Dim gf
Set fso = WScript.CreateObject(“Scripting.FileSystemObject”)
Set ...
「VBScript」フォルダのアクセス日時を取得するサンプル
サンプルコード
Dim fso
Dim tt
Set fso = WScript.CreateObject(“Scripting.FileSystemObject”)
Set ...
「VBScript入門」Mid関数を使うサンプル
説明
Mid(strString, posStart )
文字列の左端から指定された位置から文字数分の文字列を返します。
posStart
引数string の先頭の位置を1指定
posCnt ...
「VBScript」カレントディレクトリを設定する方法
1.カレントディレクトリの参照
Dim fso
Set fso = WScript.CreateObject(“WScript.Shell”)
WScript.Echo fso.Cu ...
「VBScript」フォルダの更新日時を取得するサンプル
サンプルコード
Dim sfso
Dim fdr
Set sfso = WScript.CreateObject(“Scripting.FileSystemObject”)