2013-01-04 70 views
0

雖然我試圖讀取文件,並輸入一些處理和他們在另一個文件中寫,我遇到了這個錯誤,錯誤:read_util:read_line_to_codes/2:<stream>不存在

ERROR: read_util:read_line_to_codes/2: <stream> Number does not exist 

其中number是流(例如:04068B20)號),它的每一次改變。

read_File(Stream,[H|T],LineNumber):- 
    read_line_to_codes(Stream, H),  
    (H \= end_of_file -> /*open other file and write in it*/). 
+0

這是不是一個正常的錯誤,我用的!那裏有一個菜單: 'code' 行動(1): - !做一些處理,失敗。 行動(2): - !,讓一些處理,失敗。 ..... 'code' 一旦用戶選擇的動作(1),而回溯它備份和失敗 所以它是不正常的錯誤而讀該文件。 – Yasmin

回答

1

您的信息流不存在。你能以某種方式關閉流和/或移動/刪除文件?

相關問題