Python file.isatty()方法
如果文件已連接(與終端設備相關聯)到一個tty(狀)的設備,isatty()方法返回True,否則返回False。
語法
以下是isatty()方法的語法:
fileObject.isatty();
參數
-
NA
返回值
如果該文件被連接(與終端設備相關聯)到一個tty(類似終端)設備此方法返回true,否則返回false。
例子
下麵的例子顯示了isatty()方法的使用。
#!/usr/bin/python # Open a file fo = open("foo.txt", "wb") print "Name of the file: ", fo.name ret = fo.isatty() print "Return value : ", ret # Close opend file fo.close()
當我們運行上麵的程序,它會產生以下結果:
Name of the file: foo.txt Return value : False