如何在系统中的特定位置找到任何 "txt" 文件?

How to find any "txt" file at particular location in system?

我有一个机器人可以在系统中的特定位置查找给定名称的文件,但现在我想查找该特定位置的所有文本文件。我试过使用“*.txt”,但没有成功。有没有办法做到这一点?

file.exists ♥environment⟦USERPROFILE⟧\Documents\t.txt errormessage ‴Sorry, I could not find a file‴
dialog ‴File exists‴

您可以使用directory 命令。 pattern 参数允许您过滤掉特定扩展名的文件。

directory path ♥environment⟦USERPROFILE⟧\Desktop pattern *.txt result ♥files
dialog ♥files⟦count⟧

上面的代码应该让您知道给定目录中存在多少给定扩展名的文件。

您可以从返回的列表中获取值并将其与 file.exists 命令一起使用。