1
def create_file():
    file_writer= open('testFile.txt','w')
    file_writer.write('TESTING...;\n')
    file_writer.flush()
    file_writer.close()

def my_macro():
    wb = Workbook.caller()  # Creates a reference to the calling Excel file
    Range('Sheet1', 'C3').value = random.randint(0,10)
    updateValue = Range('Sheet1', 'C3').value
    print("updatedValue=" , updateValue);
    create_file()

if __name__ == '__main__':
    path = os.path.abspath(os.path.join(os.path.dirname(__file__), 'FirstExcel.xlsm'))
    Workbook.set_mock_caller(path)
    my_macro()

当我在 Eclipse 中运行上述代码时,它会创建一个文件并更新 Excel 电子表格。但是,当我从 excel 运行它时,它会更新电子表格,但不会创建文件。

4

1 回答 1

1

问题是 Excel 当前在与从 Python 调用文件时不同的工作目录中启动 Python 解释器。这是 GitHub 上的一个未解决问题,请参见此处

open同时,只需为和中的所有文件使用绝对/完整路径write。您还应该能够使用类似的东西os.path.abspath(os.path.join(os.path.dirname(__file__), 'testFile.txt'))

于 2015-08-05T20:46:16.260 回答