标签: python windows-7
我是Python的新手,目前我的任务是编写一个脚本来查看我的公司FTP位置中是否存在文件。 - 完整的Win7环境。
import os if os.path.exists("\\servername\d:\corp\file"): print ("yes") else: print ("no")
远程服务器上的文件结构中是否还需要一个.py文件才能在我的shell脚本中进行确认?