私はpython
スクリプトを以下のように持っています。このスクリプトでは、スクリプトのstdout
とstderr
をファイルに収集し、Linux
に保存しています。このスクリプトでforループの後にサブプロセスを呼び出すのは、Pythonで完了します
、私は別の場所にLinux
でデータを移動するsubprocess
を使用しています、このスクリプトでinput_file
にわたるループに機能path_finder
を実行しています。
私はloop
代わりを終えた後に実行するには、このsubprocess
コールをしたい、それが期待されているエラーをスローするときloop
初めて実行すると、ときに、第2の時間loop
実行実行されます。ファイルが存在するので、エラーが発生します。
#!/usr/bin/python
import os
import sys
import traceback
import subprocess
def path_finder(
table,
mysql_user,
user,
dir,
):
day = datetime.now().strftime('%Y-%m-%d')
month = datetime.now().strftime('%Y-%m')
Linux_path = '/data/logging/{}'.format(input_file)
New_path = '/user/{}/{}/logging/{}/{}/{}'.format(user,dir,mysql_user,month,day)
subprocess.call(["rm", Linux_path])
so = se = open('/data/logging/{}'.format(input_file), 'a',
0)
#re-open stdout without buffering
sys.stdout = os.fdopen(sys.stdout.fileno(), 'a', 0)
# redirect stdout and stderr to the log file opened above
os.dup2(so.fileno(), sys.stdout.fileno())
os.dup2(se.fileno(), sys.stderr.fileno())
### CODE:
Do something
### if errors the print traceback
### repeat the same for every table in input file
## Execute below statement after for loop completed
subprocess.call(["cp", Linux_path, New_path])
if len(sys.argv) != 5:
print 'Invalid number of args......'
exit()
input_file = sys.argv[1]
mysql_user = sys.argv[2]
user = sys.argv[3]
dir = sys.argv[4]
input = open("{}.format(input_file)", "r")
for table in input:
path_finder(
table,
mysql_user,
user,
dir,
)
sc.stop()
print
for loop
が行われた後sub process
呼び出しが実行されるようにどのように私は私のスクリプトを変更できますか?