所以我在网上找到了这段代码(通常我做 C#,但我想向我的朋友教 smallbasic),它基本上读取一个文件:
TextWindow.Write("Enter the name of the new directory: ")
DirectoryName = TextWindow.Read()
files = File.GetFiles(DirectoryName)
TextWindow.WriteLine("This is the content in the file: ")
TextWindow.WriteLine(File.ReadContents(files[1]))
我理解这一切的作用,但为什么需要它files[1]
而不是 just files
?
删除索引[1]
只会使该行不起作用,程序仍然可以编译等等。
SB没有调试器,网上的资源也不是很好。