Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将文件夹视为数组?所以其中的第一个文件被视为文件 0,第二个文件 1 等?
谢谢
我猜你的意思是:
Dim allFiles() As String = System.IO.Directory.GetFiles("folder path")
尝试Directory.GetFiles。使用文件夹路径作为输入调用它,返回文件夹中所有文件的文件路径数组的输出。