摘要: 一、打开、关闭文件 open的返回值用来确定打开文件的操作是否成功,当其成功时返回非零值,失败时返回零,因此可以如下判断: if (open(MYFILE, "myfile")) { # here is what to do if the file opened successfully } 当文... 阅读全文
posted @ 2015-02-10 08:49 CHIPER 阅读(3931) 评论(0) 推荐(0) 编辑