繁体   English   中英

如何在Windows中使用Popen调用外部.py脚本并等待其完成

[英]How to use Popen in Windows to invoke an external .py script and wait for its completion

您是否尝试过通过调用外部zip.py脚本来工作的反馈? 我的CGITB没有显示任何错误消息。 它只是没有调用外部.py脚本即可工作。 它只是跳过而涌出。 如果您能协助我在feedback.py中将此zip.py称为可调用,我将不胜感激。

问候。 大卫

#**********************************************************************
# Description:
#    Zips the contents of a folder.
# Parameters:
#   0 - Input folder.
#   1 - Output zip file. It is assumed that the user added the .zip 
#       extension.  
#**********************************************************************

# Import modules and create the geoprocessor
#
import sys, zipfile, arcgisscripting, os, traceback
gp = arcgisscripting.create()

# Function for zipping files.  If keep is true, the folder, along with 
#  all its contents, will be written to the zip file.  If false, only 
#  the contents of the input folder will be written to the zip file - 
#  the input folder name will not appear in the zip file.
#
def zipws(path, zip, keep):
    path = os.path.normpath(path)
    # os.walk visits every subdirectory, returning a 3-tuple
    #  of directory name, subdirectories in it, and filenames
    #  in it.
    #
    for (dirpath, dirnames, filenames) in os.walk(path):
        # Iterate over every filename
        #
        for file in filenames:
            # Ignore .lock files
            #
            if not file.endswith('.lock'):
                gp.AddMessage("Adding %s..." % os.path.join(path, dirpath, file))
                try:
                    if keep:
                        zip.write(os.path.join(dirpath, file),
                        os.path.join(os.path.basename(path),
                        os.path.join(dirpath, file)[len(path)+len(os.sep):]))
                    else:
                        zip.write(os.path.join(dirpath, file),            
                        os.path.join(dirpath[len(path):], file)) 

                except Exception, e:
                    gp.AddWarning("    Error adding %s: %s" % (file, e))

    return None

if __name__ == '__main__':
    try:
        # Get the tool parameter values
        #
        infolder = gp.GetParameterAsText(0)
        outfile = gp.GetParameterAsText(1)      

        # Create the zip file for writing compressed data. In some rare
        #  instances, the ZIP_DEFLATED constant may be unavailable and
        #  the ZIP_STORED constant is used instead.  When ZIP_STORED is
        #  used, the zip file does not contain compressed data, resulting
        #  in large zip files. 
        #
        try:
                zip = zipfile.ZipFile(outfile, 'w', zipfile.ZIP_DEFLATED)
                zipws(infolder, zip, True)
                zip.close()
        except RuntimeError:
                # Delete zip file if exists
                #
                if os.path.exists(outfile):
                        os.unlink(outfile)
                zip = zipfile.ZipFile(outfile, 'w', zipfile.ZIP_STORED)
                zipws(infolder, zip, True)
                zip.close()
                gp.AddWarning("    Unable to compress zip file contents.")

        gp.AddMessage("Zip file created successfully")

    except:
        # Return any python specific errors as well as any errors from the geoprocessor
        #
        tb = sys.exc_info()[2]
        tbinfo = traceback.format_tb(tb)[0]
        pymsg = "PYTHON ERRORS:\nTraceback Info:\n" + tbinfo + 
                "\nError Info:\n    " +                 str(sys.exc_type) + 
                ": " + str(sys.exc_value) + "\n"
        gp.AddError(pymsg)

        msgs = "GP ERRORS:\n" + gp.GetMessages(2) + "\n"
        gp.AddError(msgs)
  • zip()是Python中的内置函数。 因此,使用zip作为变量名是一个不好的做法。 可以使用zip_代替。

  • execfile()函数读取并执行Python脚本。

  • 可能实际上您实际上只需要在feedback.py中import zip_而不是execfile()

Yay ArcGIS。

只是为了阐明您如何尝试使用popen调用此脚本,您可以发布一些代码吗?

如果您是通过ArcGIS环境中的另一个脚本来调用此脚本的,那么事实是,当您使用Popen时,该脚本将不会在ArcGIS环境中被调用,而是会在Windows中被调用。 因此,您将失去对其的所有实际控制权。

同样,只有另一个ArcGIS注释,您永远不会初始化地理处理器的许可证。

我的建议将您的代码重构到一个模块函数中,该函数仅尝试压缩文件,如果失败则将消息打印到ArcGIS。

如果要发布您如何调用它以及如何运行它。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM