0

我的科特林代码:

fun get_path(): PyObject? {
    val py = getInstance()
    val pyf = py.getModule("1")
    val va = pyf.callAttr ("pdf_files", inputvalue)
    return va
}

我的 Python 代码

def pdf_files(user_input):
    pdfFiles = []
    path = str(user_input)
    for filename in os.listdir(path):
        if filename.endswith('.pdf'):
            pdfFiles.append("/" + filename)
    return path, pdfFiles
4

0 回答 0