我希望我的代码进入一个子目录,执行一些操作并将输出保存在一个文件中,这是一个向上的文件,到主目录。
主目录--->子目录
我将不胜感激不需要“硬编码”主目录路径的解决方案。有没有一种方法可以直接将文件输出写入主目录,而无需每次迭代都执行 os.chdir() ?就像只是给出文件的路径来读写?
例如:
# example
import os
for i in xrange(10):
code to read and operate on some file in this sub dir one by one (ten files)
# write output file to the previous directory
# without hardcoding the path
code to write files to main directory (ten files )