ifステートメントを使用するときにjavascriptを終了する方法を教えてください(ハードドライブで実行します)。次のコードは機能しません。
if (fso.FileExists("C:\\EXT\\file.txt") ) //check if there file in the folder
{
log.WriteLine(file_exist_time + " - file exists C:\\EXT\\ ");
}
else
{
log.WriteLine("There is no file in C:\\EXT\\");
function exit ()
{
throw ('Script Exit');
}
}
どうもありがとうございました!