It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center
                            
                        
                    
                
                                7年前关闭。
            
                    
我对Python tempfile有一个快速的问题。

什么时候应该使用tempfile?如果我使用tempfile.mkstemp创建一个临时文件,这与普通文件相同吗?有什么区别?谢谢。

最佳答案

documentation几乎说明了一切。我认为,当需要创建文件但不关心文件名时,应使用tempfile。您可以根据需要自动删除或保存文件。它也可能对其他程序不可见。

关于python - 我什么时候应该使用tempfile ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12627536/

10-11 07:47