当我 运行 使用 Process.Start 的 python 程序时,我的 python 程序中的日志不起作用?

When I run a python program using Process.Start the log in my python program does not work?

我正在 运行在 raspberry pi 零 w 上使用 process.start() 从 c# 编译一个 python 程序。我已经测试过程序在调用时是 运行ning 但它不会记录到文件。但是,如果我自己 运行 程序 python Relays.py 0 0 0 0 0 , python 日志就可以工作。有谁知道是什么导致了这个问题?

下面是 python 代码和 C# 函数:

void update()
        {
            String acommand = status();
            Console.WriteLine("LOOKSLIKEWEMADEIT " + acommand);
            String location = "/home/pi/Debug/Relays.py " + Convert.ToString(acommand);
            //run python 
            ProcessStartInfo info = new ProcessStartInfo("python", location);
            Process.Start(info);
            Console.WriteLine("YOUHAVEPASSEd");

        }

import RPi.GPIO as G
import time
import sys
import socket
import threading
import logging

G.setwarnings(False)
G.setmode(G.BOARD)

relays = (24,26,32,36,38)

for r in relays:
 G.setup(r,G.OUT)

logging.basicConfig(filename='Relaytrigger.log',level=logging.DEBUG,format='%(asctime)s %(message)s$

logging.info('\r\n')
logging.info(sys.argv)
logging.info('\r\n')

#######################heat
if sys.argv[1] == '1':
 heater = True
 G.output(relays[0],1)
 logging.info('heaton\r\n')
else:
 heater = False
 G.output(relays[0],0)
 logging.info('heatoff\r\n')
##########################main
if sys.argv[2] == '1':
 mainpump = True
 G.output(relays[1],1)
 logging.info('mainon\r\n')
else:
 mainpump = False
 G.output(relays[1],0)
 logging.info('mainoff\r\n')
#########################aux
if sys.argv[3] == '1':
 auxilarypump = True
 G.output(relays[2],1)
 logging.info('auxon\r\n')
else:
 auxilarypump = False
 G.output(relays[2],0)
 logging.info('auxoff\r\n')
#########################auxset
if sys.argv[4] == '1':
 auxsetting = True
 G.output(relays[3],1)
 logging.info('mainhigh\r\n')
else:
 auxsetting = False
 G.output(relays[3],0)
 logging.info('heatlow\r\n')
########################light
if sys.argv[5] == '1':
 lighting = True
 G.output(relays[4],1)
 logging.info('lighton\r\n')
else:
 lighting = False
 G.output(relays[4],0)
 logging.info('lightoff\r\n')

我觉得你的 CWD(当前工作目录)有问题。

根据 python 应用程序的启动位置 "relative paths" 可能会有所不同。

解决方案 #1:"The python-side solution": 使用绝对路径!相对路径更可能不安全。

解决方案 #2:"The C#-side solution": 使用 ProcessStartInfo-Property "WorkingDirectory" 定义您的 CWD。 您的 CWD 通常是包含 .py 文件的目录。 Link to ProcessStartInfo-Class

高频