我想用球拍删除一个文件。我正在使用下面的代码。
(delete-file c://foo.txt)
我收到了这条消息。
reference to an identifier before its definition:
c://foo.txt
发布于 2012-03-26 15:55:51
(delete-file "c:/foo.txt")
顺便说一句,既然你问的是非常基本的问题,也许先阅读the guide会更好?
https://stackoverflow.com/questions/9868339
复制相似问题