我目前在Sharepoint位置/服务器上有一些python脚本(有时附加到.bat以便立即运行)。通常,我们会在办公时间在必要时运行此程序,但我们正在研究在办公时间以外通过Sharepoint自动化此程序的可能性。...例如MS flow等。
现在,我(非常简短地)阅读了Azure自动化,但是我无法弄清楚它是否具有在Sharepoint上运行python脚本的可能性,该Sharepoint可以操纵各种目录中的Excel和/或XML文件并移动他们周围等等。该脚本在本地与Sharpoint文件夹同步的情况下工作,但是我希望在这里获得一些信息(如果可以某种方式在云中)。因为在我的代码中,我让它根据Windows计算机上的路径来绕过(子)目录,并且可能无法通过基于云的解决方案工作,例如:
Import bla bla
current_path = os.getcwd()
import_folder = str(current_path + "\\Location 1")
archive_folder = str(current_path + "\\Location 1")
backup_folder = str(current_path + "\\Location 2")
And then some file manipulation loops here