Questions tagged «errno»


9
如何在Ruby中创建文件
我正在尝试创建一个新文件,但事情似乎也没有按我期望的那样工作。这是我尝试过的: File.new "out.txt" File.open "out.txt" File.new "out.txt","w" File.open "out.txt","w" 根据我在网上阅读的所有内容,所有这些都应该起作用,但是其中每一个都会给我以下信息: ERRNO::ENOENT: No such file or directory - out.txt 这发生在IRB和Ruby脚本中。我想念什么?
170 ruby  file  io  errno 

9
Python [Errno 98]地址已在使用中
在我的Python套接字程序中,有时需要用中断它Ctrl-C。当我这样做时,它确实使用关闭了连接socket.close()。 但是,当我尝试重新打开它时,我必须等待一分钟左右才能重新连接。如何正确关闭插座?还是打算这样做?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.