gpt4 book ai didi

javascript - 批处理文件 > Javascript > WinSCP > 检查文件是否存在

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:24:00 25 4
gpt4 key购买 nike

我有一个批处理文件,它将启动一个 .js 文件,该文件通过 WinSCP 检查文件是否存在,如果存在则返回批处理文件。

问题是:它总是返回 not found,我不明白为什么。我不确定在这种情况下如何使用通配符。

批处理文件如下所示:

cscript /nologo file.js
if errorlevel 1 goto notfound
exit
:notfound
(another script to copy a file over)

服务器上一次只能存在一个文件。所以每十分钟,这个批处理文件就会运行,检查是否有文件,如果没有,复制一个过来。

文件.js:

// Configuration

// Remote file search for
var FILEPATH = "../filepath/TSS*";

// Session to connect to
var SESSION = "mysession@someplace.come";

// Path to winscp.com
var WINSCP = "c:\\program files (x86)\\winscp\\winscp.com";

var filesys = WScript.CreateObject("Scripting.FileSystemObject");
var shell = WScript.CreateObject("WScript.Shell");

var logfilepath = filesys.GetSpecialFolder(2) + "\\" + filesys.GetTempName() + ".xml";

var p = FILEPATH.lastIndexOf('/');
var path = FILEPATH.substring(0, p);
var filename = FILEPATH.substring(p + 1);

var exec;

// run winscp to check for file existence
exec = shell.Exec("\"" + WINSCP + "\" /log=\"" + logfilepath + "\"");
exec.StdIn.Write(
"option batch abort\n" +
"open \"" + SESSION + "\"\n" +
"ls \"" + path + "\"\n" +
"exit\n");

// wait until the script finishes
while (exec.Status == 0)
{
WScript.Sleep(100);
WScript.Echo(exec.StdOut.ReadAll());
}

if (exec.ExitCode != 0)
{
WScript.Echo("Error checking for file existence");
WScript.Quit(1);
}

// look for log file
var logfile = filesys.GetFile(logfilepath);

if (logfile == null)
{
WScript.Echo("Cannot find log file");
WScript.Quit(1);
}

// parse XML log file
var doc = new ActiveXObject("MSXML2.DOMDocument");
doc.async = false;
doc.load(logfilepath);

doc.setProperty("SelectionNamespaces",
"xmlns:w='http://winscp.net/schema/session/1.0'");

var nodes = doc.selectNodes("//w:file/w:filename[@value='" + filename + "']");

if (nodes.length > 0)
{
WScript.Echo("File found");
// signalize file existence to calling process;
// you can also continue with processing (e.g. downloading the file)
// directly from the script here
WScript.Quit(0);
}
else
{
WScript.Echo("File not found");
WScript.Quit(1);
}

第 4 行说:

var FILEPATH = "../filepath/TSS*";

我认为那颗星给我带来了问题。我需要寻找一个以 TSS 开头的文件,但最后会有一个时间戳。所以我需要在 TSS 之后使用通配符。

所以我需要帮助的是:如果 TSS* 存在任何文件,则使此过程返回 true

任何帮助将不胜感激。

编辑:

var nodes = doc.selectNodes("//w:file/w:filename[starts-with(@value, 'TSS')]");

这段代码似乎不起作用。如果这段代码有效,它似乎可以解决我所有的问题。

最佳答案

您需要更正 var nodes... 行中的 xpath 表达式。尝试这样的事情:

doc.setProperty("SelectionLanguage", "XPath"); //added in edit
var nodes = doc.selectNodes("//w:file/w:filename[starts-with(@value, '" + filename + "')]");

并从 FILEPATH 中删除星号。

注意:为了使用 XPath 作为查询语言,第一行是必需的,而不是默认的(和旧的)XSLPattern,它不支持诸如 starts-withcontains

SelectionLanguage Property (MDSN) .

关于javascript - 批处理文件 > Javascript > WinSCP > 检查文件是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16344531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com